.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fffc;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: #fffffff2;
  box-shadow: 0 4px 20px #00000014;
  border-bottom-color: #00000014;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo-link {
  text-decoration: none;
  color: inherit;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #2e7d324d;
}
.logo-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.nav-link.active {
  color: var(--primary-green);
  background: #2e7d3214;
}
.nav-link:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--primary-green);
  background: #2e7d320d;
}
.nav-link:hover:after {
  width: 60%;
}
.cta-link {
  text-decoration: none;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px #2e7d324d;
}
.header-cta:hover {
  box-shadow: 0 6px 24px #2e7d3266;
  transform: translateY(-2px);
}
.cta-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.header-cta:hover .cta-icon {
  transform: translate(4px);
}
.mobile-menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.mobile-menu-button:hover {
  background: var(--primary-green);
  color: #fff;
}
.mobile-menu-button svg {
  width: 24px;
  height: 24px;
}
.mobile-menu {
  padding: 20px 24px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-link {
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.mobile-nav-link:hover {
  background: #2e7d320d;
  color: var(--primary-green);
}
.mobile-cta-link {
  text-decoration: none;
  width: 100%;
}
.mobile-cta {
  margin-top: 8px;
  padding: 16px 24px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px #2e7d324d;
  width: 100%;
}
@media (max-width: 968px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .mobile-menu-button {
    display: flex;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 12px 16px;
  }
  .logo-text {
    font-size: 1.25rem;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
}
.footer {
  background: #f9fafb;
  color: #1f2937;
  padding: 80px 20px 40px;
  position: relative;
  border-top: 1px solid #e5e7eb;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-brand {
  max-width: 400px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1f2937;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 400;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.2s ease;
  text-decoration: none;
}
.social-link:hover {
  color: #4caf50;
  border-color: #4caf50;
  transform: translateY(-2px);
}
.social-link svg {
  width: 18px;
  height: 18px;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-column {
  display: flex;
  flex-direction: column;
}
.footer-heading {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-list li {
  margin: 0;
}
.footer-list a,
.footer-list button {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9375rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 400;
}
.footer-list a:hover,
.footer-list button:hover {
  color: #4caf50;
}
.footer-contact {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  font-weight: 400;
}
.contact-item:hover {
  color: #1f2937;
}
.contact-icon {
  width: 18px;
  height: 18px;
  color: #9ca3af;
  flex-shrink: 0;
}
.contact-link {
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-link:hover {
  background: #ffffff1a;
  transform: translate(5px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  color: #9ca3af;
  font-size: 0.9375rem;
  font-weight: 400;
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #6b7280;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.back-to-top:hover {
  color: #4caf50;
  border-color: #4caf50;
}
.back-icon {
  width: 16px;
  height: 16px;
}
@media (max-width: 968px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 16px 32px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
  transform-origin: 0%;
  z-index: 9999;
  box-shadow: 0 2px 8px #2e7d324d;
}
.bus-imagery-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px;
}
.bus-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.bus-illustration {
  position: relative;
  width: 100%;
  padding: 20px;
  transition: transform var(--transition-normal);
}
.bus-body {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 3px solid hsl(var(--border));
}
.bus-front {
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #0000004d, #0000);
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 8px;
}
.bus-windshield {
  width: 70%;
  height: 40px;
  background: linear-gradient(135deg, #fff3, #ffffff0d);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.bus-route-number {
  background: #fff;
  color: #404040;
  font-weight: 800;
  font-size: 1.5rem;
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px #0000001f;
}
.bus-headlights {
  display: flex;
  gap: 20px;
  margin-top: auto;
}
.headlight {
  width: 12px;
  height: 12px;
  background: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 12px #fbbf24;
}
.bus-side {
  position: absolute;
  left: 25%;
  top: 0;
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
}
.bus-windows {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}
.window {
  width: 50px;
  height: 35px;
  background: linear-gradient(135deg, #ffffff26, #ffffff0d);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 2px 4px #0000001a;
}
.bus-destination {
  background: #fbbf24;
  color: #404040;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 3px;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bus-destination span {
  display: inline-block;
}
.bus-wheels {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px 0 50px;
}
.wheel {
  width: 40px;
  height: 40px;
  background: #525252;
  border-radius: 50%;
  border: 4px solid #404040;
  box-shadow:
    0 4px 12px #00000026,
    inset 0 2px 4px #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel-inner {
  width: 15px;
  height: 15px;
  background: #737373;
  border-radius: 50%;
  border: 2px solid #8a8a8a;
}
.motion-lines {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.motion-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #00000026, #0000);
  border-radius: 2px;
}
.route-indicator {
  margin-top: 40px;
  width: 100%;
}
.route-path {
  width: 100%;
  height: 60px;
}
@media (max-width: 768px) {
  .bus-body {
    height: 120px;
  }
  .window {
    width: 40px;
    height: 30px;
  }
  .bus-route-number {
    font-size: 1.25rem;
    padding: 3px 10px;
  }
  .wheel {
    width: 35px;
    height: 35px;
  }
  .wheel-inner {
    width: 12px;
    height: 12px;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, #fafafa);
}
.hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 120px 20px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  z-index: 2;
}
.hero-content {
  position: relative;
  text-align: left;
  z-index: 1;
}
.hero-bus-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.research-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #0000000a;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #404040;
  letter-spacing: -0.01em;
}
.research-badge-icon {
  width: 16px;
  height: 16px;
}
.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -0.03em;
}
.hero-title-main {
  display: block;
}
.hero-title-highlight {
  color: #404040;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}
.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #666;
  margin: 0 0 40px;
  line-height: 1.65;
  max-width: 540px;
  font-weight: 400;
}
.hero-stats {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  margin-bottom: 36px;
}
.stat {
  text-align: left;
}
.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: #737373;
  font-weight: 500;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: #0000001a;
}
.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cta-button-primary {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 2px 8px #0000001f;
}
.cta-button-primary:hover {
  background: #2a2a2a;
  box-shadow: 0 4px 12px #00000029;
  transform: translateY(-1px);
}
.cta-button-secondary {
  background: #fff;
  color: #404040;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
}
.cta-button-secondary:hover {
  background: #fafafa;
  border-color: #0003;
  transform: translateY(-1px);
}
.button-icon {
  width: 18px;
  height: 18px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0000004d;
}
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 100px 20px 60px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    justify-items: center;
  }
  .stat {
    text-align: center;
  }
  .stat-divider {
    display: none;
  }
  .hero-cta {
    justify-content: center;
    width: 100%;
  }
  .cta-button {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
  .hero-bus-container {
    order: -1;
  }
}
@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .cta-button {
    width: 100%;
  }
}
.trust-badges {
  padding: 80px 20px;
  background: #fafafa;
}
.trust-badges-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}
.trust-badge:hover {
  border-color: #00000026;
  box-shadow: 0 4px 16px #00000014;
  transform: translateY(-2px);
}
.badge-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0000000a;
  border-radius: 10px;
}
.badge-icon-trust {
  width: 24px;
  height: 24px;
  color: #404040;
}
.badge-content {
  flex: 1;
}
.badge-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.badge-subtitle {
  font-size: 0.9375rem;
  color: #404040;
  font-weight: 600;
  margin-bottom: 8px;
}
.badge-description {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 768px) {
  .trust-badges {
    padding: 60px 20px;
  }
  .trust-badges-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trust-badge {
    padding: 24px 20px;
  }
  .badge-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  .badge-icon-trust {
    width: 22px;
    height: 22px;
  }
  .badge-title {
    font-size: 1rem;
  }
  .badge-subtitle {
    font-size: 0.875rem;
  }
  .badge-description {
    font-size: 0.8125rem;
  }
}
.map-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.map-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}
.map-header {
  text-align: center;
  margin-bottom: 60px;
}
.map-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px #2e7d324d;
}
.map-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}
.map-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.map-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
  background: #fff;
}
.map {
  width: 100%;
  height: 650px;
  position: relative;
}
.map :global(.mapboxgl-ctrl-logo),
.map :global(.mapboxgl-ctrl-attrib) {
  display: none;
}
.map :global(.mapboxgl-ctrl-bottom-left) {
  display: none;
}
.bus-marker {
  position: relative !important;
  z-index: 1000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
  animation: busFloat 3s ease-in-out infinite !important;
}
@keyframes busFloat {
  0%,
  to {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.1);
  }
}
.bus-stop-marker {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  border-radius: 50%;
  box-shadow: 0 4px 16px #2e7d3280;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.bus-stop-marker:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 24px #2e7d32b3;
}
.stop-number {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.stop-popup {
  padding: 8px;
  text-align: center;
  font-size: 0.875rem;
}
.stop-popup strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}
.stop-popup small {
  color: var(--text-secondary);
}
@keyframes routeGlow {
  0%,
  to {
    filter: drop-shadow(0 0 4px rgba(46, 125, 50, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(46, 125, 50, 0.8));
  }
}
.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 10;
}
.live-timer {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fffffff2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-md);
  min-width: 220px;
  z-index: 10;
}
.timer-content {
  margin-bottom: 12px;
}
.timer-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.timer-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  font-family:
    Courier New,
    monospace;
  margin-bottom: 8px;
}
.timer-stop {
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.progress-bar-container {
  width: 100%;
  height: 6px;
  background: #2e7d3233;
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
  border-radius: 3px;
  transition: width 0.3s ease;
}
.overlay-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fffffff2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.overlay-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.overlay-content {
  display: flex;
  flex-direction: column;
}
.overlay-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.overlay-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}
.map-legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fffffff2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.legend-dot.bus {
  background: transparent;
  border-radius: 0;
  font-size: 16px;
}
.legend-dot.bus:before {
  content: "🚌";
}
.legend-dot.stop {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
}
.legend-dot.route {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  border-radius: 2px;
}
.map-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px #00000014;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #0000001f;
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .map {
    height: 400px;
  }
  .map-overlay {
    flex-direction: column;
    top: 10px;
    right: 10px;
  }
  .live-timer {
    top: auto;
    bottom: 80px;
    left: 10px;
    min-width: 180px;
    padding: 12px;
  }
  .timer-value {
    font-size: 1.5rem;
  }
  .timer-stop {
    font-size: 0.75rem;
  }
  .map-legend {
    bottom: 10px;
    left: 10px;
    padding: 12px;
  }
  .map-features {
    grid-template-columns: 1fr;
  }
}
.map-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fffffff2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 32px #0000001a;
  z-index: 10;
  min-width: 200px;
}
.control-group {
  margin-bottom: 16px;
}
.control-group:last-child {
  margin-bottom: 0;
}
.control-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.speed-buttons {
  display: flex;
  gap: 8px;
}
.speed-btn {
  flex: 1;
  padding: 8px 12px;
  background: #f0f0f0;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.speed-btn:hover {
  background: #e0e0e0;
}
.speed-btn.active {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}
.theme-toggle {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.theme-toggle:hover {
  transform: scale(1.05);
}
.route-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.route-info .eta {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.quick-jump-section {
  margin: 40px 0;
  text-align: center;
}
.quick-jump-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.quick-jump-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}
.jump-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e0e0e0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px #0000001a;
}
.jump-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px #4caf504d;
  border-color: var(--primary-green);
  color: var(--primary-green);
}
.jump-btn.active {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
  transform: scale(1.1);
}
.map-overlay {
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .map-controls {
    top: 10px;
    left: 10px;
    right: 10px;
    min-width: unset;
    padding: 16px;
  }
  .quick-jump-buttons {
    gap: 8px;
  }
  .jump-btn {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
  .map-overlay {
    flex-direction: column;
  }
}
.advantages-section {
  background: linear-gradient(180deg, #fff, #f8fafc);
  padding: 100px 20px;
  position: relative;
}
.advantages-container {
  max-width: 1200px;
  margin: 0 auto;
}
.advantages-header {
  text-align: center;
  margin-bottom: 80px;
}
.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #2e7d321a, #00bcd41a);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
}
.advantages-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.advantages-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 100px;
}
.advantage-card-new {
  position: relative;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px #00000014;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.advantage-card-new:hover {
  box-shadow: 0 12px 40px #0000001f;
}
.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    var(--glow-color, rgba(46, 125, 50, 0.1)) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.advantage-card-new:hover .card-glow {
  opacity: 0;
}
.card-content {
  position: relative;
  z-index: 1;
}
.advantage-icon-wrapper-new {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--icon-color, var(--primary-green)),
    transparent
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px #2e7d3233;
}
.advantage-icon-new {
  width: 32px;
  height: 32px;
  color: #fff;
}
.advantage-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.advantage-description-new {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.learn-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
  transition: all 0.3s ease;
}
.advantage-card-new:hover .learn-more {
  transform: translate(4px);
}
.features-section-new {
  background: #fff;
  border-radius: 32px;
  padding: 80px 60px;
  box-shadow: 0 8px 32px #00000014;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.features-section-new:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
}
.features-header-new {
  text-align: center;
  margin-bottom: 60px;
}
.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #2e7d321a, #00bcd41a);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
}
.badge-icon-small {
  width: 14px;
  height: 14px;
}
.features-title-new {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-subtitle-new {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.feature-item-new {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #2e7d3208, #00bcd408);
  border-radius: 16px;
  border: 1px solid rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.feature-item-new:hover {
  background: linear-gradient(135deg, #2e7d3214, #00bcd414);
  border-color: #2e7d324d;
}
.feature-check-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px #2e7d324d;
}
.check-icon-new {
  width: 20px;
  height: 20px;
  color: #fff;
}
.feature-text-new {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}
.stats-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 40px 60px;
  background: linear-gradient(135deg, #2e7d320d, #00bcd40d);
  border-radius: 24px;
  border: 1px solid rgba(46, 125, 50, 0.1);
}
.stat-number-new {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label-new {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.stat-divider-new {
  width: 2px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(46, 125, 50, 0.3),
    transparent
  );
  border-radius: 2px;
}
@media (max-width: 968px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 16px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .features-section-new {
    padding: 40px 24px;
  }
  .features-grid-new {
    grid-template-columns: 1fr;
  }
  .stats-showcase {
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
  }
  .stat-divider-new {
    width: 60px;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(46, 125, 50, 0.3),
      transparent
    );
  }
}
.video-explainer {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa, #fff);
  position: relative;
}
.explainer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.explainer-header {
  text-align: center;
  margin-bottom: 60px;
}
.explainer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #4caf501a;
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 50px;
  color: #4caf50;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.explainer-badge .badge-icon {
  width: 18px;
  height: 18px;
}
.explainer-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}
.explainer-subtitle {
  font-size: 1.2rem;
  color: #0009;
  max-width: 600px;
  margin: 0 auto;
}
.explainer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.animation-container {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px #0000004d;
}
.animation-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0f172a;
}
.canvas-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.grid-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(rgba(76, 175, 80, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 175, 80, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}
.request-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ff9800, #f44336);
  border-radius: 50%;
  box-shadow: 0 0 20px #ff9800cc;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
.cluster-group {
  position: absolute;
  width: 150px;
  height: 150px;
}
.cluster-radius {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px dashed #4caf50;
  border-radius: 50%;
  opacity: 0.5;
  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.cluster-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.8));
}
.cluster-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #2196f3;
  border-radius: 50%;
  box-shadow: 0 0 10px #2196f3cc;
  top: 50%;
  left: 50%;
}
.virtual-stop {
  position: absolute;
  font-size: 2rem;
  filter: drop-shadow(0 0 15px rgba(76, 175, 80, 1));
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.bus-icon {
  position: absolute;
  font-size: 3rem;
  filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.8));
  z-index: 10;
}
.step-info {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #000c;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  max-width: 300px;
}
.step-number {
  font-size: 0.85rem;
  color: #4caf50;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-description {
  font-size: 0.9rem;
  color: #ffffffb3;
  line-height: 1.5;
}
.animation-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  gap: 12px;
  background: #000c;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.control-button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.control-button:hover {
  background: #fff3;
}
.control-button.primary {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  border: none;
}
.control-button svg {
  width: 20px;
  height: 20px;
}
.explainer-details {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px #00000014;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.details-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}
.details-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-step {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  background: #00000005;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.detail-step.active {
  background: #4caf501a;
  border-color: #4caf50;
}
.detail-step.completed {
  opacity: 0.6;
}
.step-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #00000080;
  flex-shrink: 0;
}
.detail-step.active .step-marker {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: #fff;
}
.step-content {
  flex: 1;
}
.step-title-small {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.step-desc-small {
  font-size: 0.85rem;
  color: #0009;
  line-height: 1.5;
}
@media (max-width: 968px) {
  .video-explainer {
    padding: 60px 20px;
  }
  .explainer-title {
    font-size: 2rem;
  }
  .explainer-subtitle {
    font-size: 1rem;
  }
  .explainer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step-info {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin-top: 20px;
  }
  .animation-canvas {
    aspect-ratio: 4 / 3;
  }
}
.how-it-works-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #fff, #f8f9fa);
  position: relative;
  overflow: hidden;
}
.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}
.how-it-works-header {
  text-align: center;
  margin-bottom: 80px;
}
.how-it-works-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.how-it-works-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}
.mode-toggle {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  background: #0000000d;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.toggle-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: transparent;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #00000080;
  cursor: pointer;
  transition: all 0.3s ease;
}
.toggle-button:hover {
  color: #000c;
}
.toggle-button.active {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: #fff;
  box-shadow: 0 4px 15px #4caf504d;
}
.toggle-icon {
  width: 16px;
  height: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
.step-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 4px 24px #00000014;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.step-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--step-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step-card:hover:before {
  opacity: 1;
}
.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: var(--step-color);
  opacity: 0.1;
  line-height: 1;
}
.step-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--icon-color), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 32px;
  height: 32px;
  color: #fff;
}
.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.step-tech {
  margin-top: auto;
}
.tech-badge {
  display: inline-block;
  padding: 6px 12px;
  background: #4caf501a;
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-green);
}
.metrics-banner {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 80px;
  box-shadow: 0 8px 32px #4caf504d;
}
.metrics-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.metrics-badge-icon {
  width: 24px;
  height: 24px;
  color: #fff;
}
.metrics-badge-text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}
.metric-item {
  text-align: center;
  color: #fff;
}
.metric-value {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.metric-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.metric-sublabel {
  font-size: 0.875rem;
  opacity: 0.9;
}
.algorithm-visual {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 24px #00000014;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.visual-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.visual-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-green);
}
.visual-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}
.visual-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cluster-demo {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.cluster-group {
  position: relative;
  width: 100px;
  height: 100px;
}
.cluster-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary-green);
  border-radius: 50%;
  box-shadow: 0 2px 8px #4caf5066;
  animation: pulse 2s ease-in-out infinite;
}
.cluster-1 .cluster-point:nth-child(1) {
  top: 10px;
  left: 20px;
}
.cluster-1 .cluster-point:nth-child(2) {
  top: 30px;
  right: 15px;
}
.cluster-1 .cluster-point:nth-child(3) {
  bottom: 20px;
  left: 30px;
}
.cluster-2 .cluster-point:nth-child(1) {
  top: 15px;
  left: 25px;
}
.cluster-2 .cluster-point:nth-child(2) {
  top: 25px;
  right: 20px;
}
.cluster-2 .cluster-point:nth-child(3) {
  bottom: 25px;
  left: 20px;
}
.cluster-3 .cluster-point:nth-child(1) {
  top: 20px;
  left: 30px;
}
.cluster-3 .cluster-point:nth-child(2) {
  bottom: 30px;
  right: 25px;
}
.cluster-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
@keyframes pulse {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}
.visual-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.visual-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.visual-stat:hover {
  background: #e9ecef;
  transform: translate(8px);
}
.stat-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 4px;
}
.stat-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.stat-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 80px 20px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .metric-value {
    font-size: 2rem;
  }
  .visual-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cluster-demo {
    height: 200px;
  }
  .algorithm-visual {
    padding: 32px 24px;
  }
}
.savings-calculator {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fafc, #fff);
  position: relative;
  overflow: hidden;
}
.calculator-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.calculator-header {
  text-align: center;
  margin-bottom: 60px;
}
.calculator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2e7d321a, #00bcd41a);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  color: var(--primary-green);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.calculator-badge .badge-icon {
  width: 18px;
  height: 18px;
}
.calculator-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.calculator-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.calculator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.calculator-inputs,
.calculator-results {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px #0000000f;
}
.inputs-title,
.results-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
}
.input-group {
  margin-bottom: 30px;
}
.input-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}
.input-icon {
  width: 20px;
  height: 20px;
  color: #2196f3;
}
.input-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #00000014;
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 10px;
}
.input-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  cursor: pointer;
  box-shadow: 0 0 10px #4caf5080;
}
.input-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  cursor: pointer;
  box-shadow: 0 0 10px #4caf5080;
  border: none;
}
.input-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4caf50;
  text-align: center;
}
.calculate-button {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.calculate-button:hover {
  box-shadow: 0 0 30px #4caf5080;
}
.button-icon {
  width: 20px;
  height: 20px;
}
.calculator-results {
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.calculator-results.show {
  opacity: 1;
}
.results-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.result-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.result-card:hover {
  background: #e9ecef;
  transform: translate(8px);
}
.result-icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 10px;
  flex-shrink: 0;
}
.result-icon.savings {
  background: #4caf5033;
  color: #4caf50;
}
.result-icon.time {
  background: #ff980033;
  color: #ff9800;
}
.result-icon.coverage {
  background: #2196f333;
  color: #2196f3;
}
.result-content {
  flex: 1;
}
.result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.result-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.result-detail {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.8;
}
.results-footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #4caf501a;
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 12px;
}
.footer-icon {
  width: 20px;
  height: 20px;
  color: #4caf50;
  flex-shrink: 0;
  margin-top: 2px;
}
.results-disclaimer {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.calculator-cta {
  text-align: center;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 4px 20px #0000000f;
}
.cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 968px) {
  .savings-calculator {
    padding: 60px 20px;
  }
  .calculator-title {
    font-size: 2rem;
  }
  .calculator-subtitle {
    font-size: 1rem;
  }
  .calculator-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .calculator-inputs,
  .calculator-results {
    padding: 30px 20px;
  }
  .result-value {
    font-size: 1.5rem;
  }
  .result-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
.social-proof {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
  position: relative;
  overflow: hidden;
}
.social-proof:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(76, 175, 80, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(33, 150, 243, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.social-proof-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.social-proof-header {
  text-align: center;
  margin-bottom: 60px;
}
.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #4caf501a;
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 50px;
  color: #4caf50;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.social-proof-badge .badge-icon {
  width: 18px;
  height: 18px;
}
.social-proof-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.social-proof-subtitle {
  font-size: 1.2rem;
  color: #ffffffb3;
  max-width: 600px;
  margin: 0 auto;
}
.gradient-text {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.partner-card {
  background: #ffffff08;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.partner-card:hover {
  background: #ffffff0d;
  border-color: #4caf5080;
  box-shadow: 0 10px 40px #4caf5033;
}
.partner-logo {
  font-size: 4rem;
  margin-bottom: 20px;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}
.partner-card:hover .partner-logo {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.partner-content {
  width: 100%;
}
.partner-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #4caf5026;
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 20px;
  color: #4caf50;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.partner-status .status-icon {
  width: 14px;
  height: 14px;
}
.partner-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.partner-full-name {
  font-size: 0.9rem;
  color: #fff9;
  margin-bottom: 12px;
  line-height: 1.4;
}
.partner-description {
  font-size: 1rem;
  color: #fffc;
  line-height: 1.5;
}
.social-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px;
  background: #ffffff08;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}
.proof-stat {
  text-align: center;
}
.proof-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 8px;
}
.proof-stat-label {
  font-size: 0.9rem;
  color: #ffffffb3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.proof-stat-divider {
  width: 1px;
  height: 50px;
  background: #fff3;
}
@media (max-width: 768px) {
  .social-proof {
    padding: 60px 20px;
  }
  .social-proof-title {
    font-size: 2rem;
  }
  .social-proof-subtitle {
    font-size: 1rem;
  }
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .partner-card {
    padding: 25px;
  }
  .partner-name {
    font-size: 1.5rem;
  }
  .social-proof-stats {
    gap: 20px;
    padding: 30px 20px;
  }
  .proof-stat-number {
    font-size: 2rem;
  }
  .proof-stat-divider {
    display: none;
  }
}
.testimonials-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f8f9fa, #fff);
  position: relative;
  overflow: hidden;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #4caf501a;
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 50px;
  color: var(--primary-green);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-icon {
  width: 18px;
  height: 18px;
}
.testimonials-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonials-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px #00000014;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}
.stat-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-green);
}
.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px #00000014;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #0000001f;
}
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-green);
  opacity: 0.3;
}
.metric-badge {
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  color: #fff;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px #4caf504d;
}
.rating {
  display: flex;
  gap: 4px;
}
.star-icon {
  width: 20px;
  height: 20px;
  color: #ffc107;
}
.testimonial-quote {
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.6;
  flex-grow: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.author-role {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.author-org {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.testimonials-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 8px 32px #4caf504d;
}
.testimonials-cta h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.testimonials-cta p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.95;
}
.cta-button {
  padding: 16px 40px;
  background: #fff;
  color: var(--primary-green);
  border: none;
  border-radius: 50px;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px #0003;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px #0000004d;
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }
  .stat-value {
    font-size: 2rem;
  }
  .testimonials-cta {
    padding: 40px 24px;
  }
  .testimonials-cta h3 {
    font-size: 1.5rem;
  }
}
.faq-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  position: relative;
}
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #2e7d321a, #00bcd41a);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
}
.faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #2e7d324d;
  box-shadow: 0 4px 20px #00000014;
}
.faq-item.open {
  border-color: var(--primary-green);
  box-shadow: 0 8px 30px #2e7d3226;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}
.faq-question:hover {
  background: #2e7d3205;
}
.question-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  padding-right: 20px;
}
.question-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  border-radius: 8px;
  flex-shrink: 0;
}
.icon {
  width: 18px;
  height: 18px;
  color: #fff;
}
.faq-answer {
  overflow: hidden;
}
.answer-text {
  padding: 0 28px 24px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.faq-cta {
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #2e7d320d, #00bcd40d);
  border-radius: 20px;
  border: 1px solid rgba(46, 125, 50, 0.1);
}
.cta-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.cta-button {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px #2e7d324d;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #2e7d3266;
}
.cta-button:active {
  transform: translateY(0);
}
.cta-button {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 16px;
  }
  .faq-header {
    margin-bottom: 40px;
  }
  .faq-question {
    padding: 20px;
  }
  .question-text {
    font-size: 1rem;
    padding-right: 12px;
  }
  .answer-text {
    padding: 0 20px 20px;
    font-size: 0.95rem;
  }
  .faq-cta {
    padding: 32px 24px;
  }
  .cta-text {
    font-size: 1.125rem;
  }
  .cta-button {
    width: 100%;
  }
}
.cta-section {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(180deg, #f8fafc, #fff);
  overflow: hidden;
}
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-content {
  text-align: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, #2e7d3205, #00bcd405);
  border-radius: 32px;
  border: 1px solid rgba(46, 125, 50, 0.1);
  box-shadow: 0 20px 60px #00000014;
  position: relative;
  overflow: hidden;
}
.cta-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #2e7d321a, #00bcd41a);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.cta-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}
.cta-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}
.benefit-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
  flex-shrink: 0;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cta-primary-btn,
.cta-secondary-btn {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  outline: none;
}
.cta-primary-btn {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  color: #fff;
  box-shadow: 0 8px 24px #2e7d324d;
}
.cta-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px #2e7d3266;
}
.cta-secondary-btn {
  background: #fff;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}
.cta-secondary-btn:hover {
  background: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
}
.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.cta-primary-btn:hover .btn-icon {
  transform: translate(4px);
}
.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1), transparent);
  animation: float 20s ease-in-out infinite;
}
.decoration-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}
.decoration-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}
.decoration-circle-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: -50px;
  animation-delay: 10s;
}
@keyframes float {
  0%,
  to {
    transform: translate(0) scale(1);
  }
  50% {
    transform: translate(20px, 20px) scale(1.1);
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 16px;
  }
  .cta-content {
    padding: 40px 24px;
  }
  .cta-benefits {
    flex-direction: column;
    gap: 16px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
    justify-content: center;
  }
  .decoration-circle {
    display: none;
  }
}
.about-page {
  padding-top: 80px;
}
.about-hero {
  padding: 100px 20px;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}
.about-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      hsl(var(--primary) / 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      hsl(var(--accent) / 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-hero-content {
  text-align: center;
  margin-bottom: 80px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
}
.about-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: hsl(var(--foreground));
  line-height: 1.1;
}
.about-hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.about-stat-card {
  padding: 32px;
  background: hsl(var(--card));
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(var(--border));
  text-align: center;
  transition: all var(--transition-normal);
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--primary) / 0.5);
}
.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.about-mission {
  padding: 120px 20px;
  background: hsl(var(--muted) / 0.3);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-text {
  max-width: 600px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
}
.badge-icon-sm {
  width: 14px;
  height: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 24px;
  line-height: 1.2;
}
.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 20px;
}
.mission-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}
.placeholder-icon {
  font-size: 5rem;
}
.image-placeholder p {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}
.about-values {
  padding: 120px 20px;
  background: hsl(var(--background));
}
.about-values:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(
    circle at 50% 50%,
    hsl(var(--primary) / 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.value-card {
  padding: 40px 30px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: all var(--transition-normal);
  text-align: center;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: hsl(var(--primary) / 0.5);
}
.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  padding: 15px;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  color: var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
}
.value-description {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}
.about-team {
  padding: 120px 20px;
  background: hsl(var(--muted) / 0.3);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  padding: 40px 30px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: hsl(var(--primary) / 0.5);
}
.team-avatar {
  font-size: 5rem;
  margin-bottom: 20px;
}
.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 8px;
}
.team-role {
  font-size: 1rem;
  color: hsl(var(--primary));
  font-weight: 600;
  margin-bottom: 12px;
}
.team-affiliation {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 8px;
}
.team-credentials {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}
.about-cta {
  padding: 100px 20px;
  background: hsl(var(--background));
}
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 20px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 32px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.btn-secondary {
  padding: 14px 32px;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}
.btn-secondary:hover {
  background: hsl(var(--muted));
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 20px;
  }
  .about-hero-content {
    margin-bottom: 40px;
  }
  .mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .cta-content {
    padding: 40px 20px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
.features-page {
  padding-top: 80px;
}
.features-hero {
  padding: 100px 20px 60px;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}
.features-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      hsl(var(--primary) / 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      hsl(var(--accent) / 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.features-hero-content {
  text-align: center;
  margin-bottom: 60px;
}
.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
}
.features-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: hsl(var(--foreground));
  line-height: 1.1;
}
.gradient-text {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.research-badge-container {
  margin-bottom: 60px;
}
.research-badge-highlight {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 40px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}
.research-badge-highlight:hover {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: var(--shadow-xl);
}
.research-icon {
  width: 40px;
  height: 40px;
  color: hsl(var(--primary));
  flex-shrink: 0;
}
.research-text {
  flex: 1;
}
.research-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 8px;
}
.research-subtitle {
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}
.features-content {
  padding: 80px 20px;
  background: hsl(var(--muted) / 0.3);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.feature-card-page {
  padding: 40px 30px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}
.feature-card-page:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: hsl(var(--primary) / 0.5);
}
.feature-icon-page {
  width: 60px;
  height: 60px;
  padding: 15px;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, hsl(var(--primary)));
  transition: all var(--transition-normal);
}
.feature-card-page:hover .feature-icon-page {
  transform: scale(1.1) rotate(5deg);
}
.feature-icon-page svg {
  width: 100%;
  height: 100%;
}
.feature-title-page {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature-description-page {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.features-cta {
  padding: 100px 20px;
  background: hsl(var(--background));
}
.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-buttons-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button {
  padding: 14px 32px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}
.cta-button:hover {
  background: hsl(var(--primary) / 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.cta-button.secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border: 1px solid hsl(var(--border));
}
.cta-button.secondary:hover {
  background: hsl(var(--muted));
  border-color: hsl(var(--primary) / 0.5);
}
@media (max-width: 968px) {
  .features-hero {
    padding: 60px 20px 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .research-badge-highlight {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .cta-buttons-group {
    flex-direction: column;
    width: 100%;
  }
  .cta-button {
    width: 100%;
  }
}
.solutions-page {
  min-height: 100vh;
}
.solutions-hero {
  padding: 140px 20px 80px;
  background: linear-gradient(180deg, #f8fafc, #fff);
  position: relative;
  overflow: hidden;
}
.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
}
.solutions-hero-content {
  text-align: center;
  margin-bottom: 60px;
}
.solutions-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #2e7d321a, #00bcd41a);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
}
.solutions-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--text-primary);
}
.solutions-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.solutions-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px #00000014;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.stat-box {
  text-align: center;
}
.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.stat-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(46, 125, 50, 0.3),
    transparent
  );
}
.solutions-grid-section {
  padding: 100px 20px;
  background: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.solution-card {
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px #0000000f;
  transition: all 0.3s ease;
}
.solution-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 12px 40px #2e7d3226;
}
.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--icon-color), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.solution-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}
.solution-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.solution-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.check-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
  flex-shrink: 0;
}
.solution-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-study-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.case-study-name {
  font-size: 0.95rem;
  color: var(--primary-green);
  font-weight: 600;
}
.solutions-features {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fafc, #fff);
}
.features-content {
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.feature-item:hover {
  border-color: var(--primary-green);
  transform: translate(4px);
}
.feature-check {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
  flex-shrink: 0;
}
.solutions-cta {
  padding: 100px 20px;
  background: #fff;
}
.cta-box {
  text-align: center;
  padding: 80px 60px;
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.cta-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  outline: none;
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  color: #fff;
  box-shadow: 0 8px 24px #2e7d324d;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px #2e7d3266;
}
.btn-secondary {
  background: #fff;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}
.btn-secondary:hover {
  background: var(--primary-green);
  color: #fff;
}
.btn-icon {
  width: 18px;
  height: 18px;
}
.cta-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
}
@media (max-width: 768px) {
  .solutions-hero {
    padding: 100px 16px 60px;
  }
  .solutions-stats {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }
  .stat-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(46, 125, 50, 0.3),
      transparent
    );
  }
  .solutions-grid-section,
  .solutions-features,
  .solutions-cta {
    padding: 60px 16px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    padding: 32px 24px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 40px 24px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
.case-studies-page {
  padding-top: 80px;
}
.case-studies-hero {
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #2e7d320d, #00bcd40d);
  position: relative;
  overflow: hidden;
}
.case-studies-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}
.case-studies-hero-content {
  text-align: center;
}
.case-studies-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #2e7d321a, #00bcd41a);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
}
.badge-icon {
  width: 16px;
  height: 16px;
}
.case-studies-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.1;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-studies-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.research-banner {
  padding: 30px 20px;
  background: #fff;
}
.case-studies-container {
  max-width: 1200px;
  margin: 0 auto;
}
.research-badge-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  border-radius: 20px;
  box-shadow: 0 8px 32px #2e7d324d;
  color: #fff;
}
.research-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.research-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.research-content p {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.6;
}
.case-studies-section {
  padding: 60px 20px;
  background: #f8fafc;
}
.study-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px #00000014;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.study-card:last-child {
  margin-bottom: 0;
}
.study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e9ecef;
}
.study-header-content {
  flex: 1;
}
.study-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.study-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.meta-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
}
.study-summary {
  font-size: 1.125rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 500;
}
.download-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px #2e7d324d;
  white-space: nowrap;
}
.download-button:hover {
  box-shadow: 0 6px 24px #2e7d3266;
}
.download-icon {
  width: 20px;
  height: 20px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.highlight-card {
  padding: 24px;
  background: linear-gradient(135deg, #2e7d320d, #00bcd40d);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px #0000001a;
}
.highlight-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-green);
  margin: 0 auto 12px;
}
.highlight-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 8px;
  line-height: 1;
}
.highlight-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.study-description {
  margin-bottom: 32px;
}
.description-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.description-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.description-text:last-child {
  margin-bottom: 0;
}
.study-metrics {
  padding: 32px;
  background: #f8f9fa;
  border-radius: 16px;
}
.metrics-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.metrics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.metrics-list li {
  padding-left: 32px;
  position: relative;
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.6;
}
.metrics-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 800;
  font-size: 1.25rem;
}
.case-studies-cta {
  padding: 80px 20px;
  background: #fff;
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 50px;
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-button {
  padding: 18px 40px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px #2e7d324d;
}
.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #2e7d3266;
}
@media (max-width: 968px) {
  .study-header {
    flex-direction: column;
  }
  .download-button {
    width: 100%;
    justify-content: center;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .research-badge-card {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .case-studies-hero,
  .case-studies-section {
    padding: 60px 16px;
  }
  .study-card {
    padding: 32px 24px;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .study-meta {
    flex-direction: column;
    gap: 12px;
  }
  .metrics-list {
    gap: 12px;
  }
  .research-badge-card {
    padding: 24px;
  }
}
.contact-page {
  padding-top: 80px;
}
.contact-hero {
  padding: 100px 20px;
  background: hsl(var(--background));
  min-height: calc(100vh - 80px);
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-hero-content {
  text-align: center;
  margin-bottom: 80px;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}
.contact-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.contact-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.contact-form-wrapper {
  background: #fff;
  padding: 56px;
  border-radius: 24px;
  box-shadow: 0 4px 20px #00000014;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 1.0625rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 160px;
}
.submit-button {
  padding: 18px 40px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px #2e7d324d;
}
.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px #2e7d3266;
}
.send-icon {
  width: 20px;
  height: 20px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-card {
  padding: 36px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px #00000014;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.info-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
}
.info-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}
.info-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.info-value {
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: hsl(var(--primary));
}
.info-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 16px;
  }
}
.app {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}
.background-gradient {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #2e7d3208, #00bcd408, #4caf5008);
  z-index: 0;
  pointer-events: none;
}
.main-content {
  position: relative;
  z-index: 1;
}
section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 60px 16px;
    min-height: auto;
  }
} /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or
    ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *,
    :before,
    :after,
    ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
    }
  }
}
.visible {
  visibility: visible;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.relative {
  position: relative;
}
.static {
  position: static;
}
.container {
  width: 100%;
}
.block {
  display: block;
}
.contents {
  display: contents;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.w-full {
  width: 100%;
}
.grow {
  flex-grow: 1;
}
.transform {
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,)
    var(--tw-skew-x,) var(--tw-skew-y,);
}
.resize {
  resize: both;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.truncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}
.border-transparent {
  border-color: #0000;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.leading-none {
  --tw-leading: 1;
  line-height: 1;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.lowercase {
  text-transform: lowercase;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.\!no-underline {
  text-decoration-line: none !important;
}
.underline {
  text-decoration-line: underline;
}
.underline-offset-4 {
  text-underline-offset: 4px;
}
.ring {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0
    calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
  box-shadow:
    var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
    var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.outline {
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,)
    var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,)
    var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,)
    var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,)
    var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.filter {
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,)
    var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,)
    var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur,)
    var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,)
    var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
    var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,)
    var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
  backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
    var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,)
    var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,)
    var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
    var(--tw-backdrop-sepia,);
}
.transition {
  transition-property:
    color, background-color, border-color, outline-color, text-decoration-color,
    fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to,
    opacity, box-shadow, transform, translate, scale, rotate, filter,
    backdrop-filter, display, content-visibility, overlay, pointer-events;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.transition\! {
  transition-property:
    color, background-color, border-color, outline-color, text-decoration-color,
    fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to,
    opacity, box-shadow, transform, translate, scale, rotate, filter,
    backdrop-filter, display, content-visibility, overlay, pointer-events !important;
  transition-timing-function: var(--tw-ease, ease) !important;
  transition-duration: var(--tw-duration, 0s) !important;
}
.transition-all {
  transition-property: all;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.transition-colors {
  transition-property:
    color, background-color, border-color, outline-color, text-decoration-color,
    fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.duration-300 {
  --tw-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (hover: hover) {
  .hover\:\!no-underline:hover {
    text-decoration-line: none !important;
  }
  .hover\:underline:hover {
    text-decoration-line: underline;
  }
  .hover\:shadow-\[0_0_12px_rgba\(46\,125\,50\,0\.6\)\]:hover {
    --tw-shadow: 0 0 12px var(--tw-shadow-color, #2e7d3299);
    box-shadow:
      var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
}
.focus\:\!no-underline:focus {
  text-decoration-line: none !important;
}
.focus\:ring-2:focus {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0
    calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
  box-shadow:
    var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
    var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
}
.focus\:outline-none:focus {
  --tw-outline-style: none;
  outline-style: none;
}
.focus-visible\:ring-1:focus-visible {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0
    calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
  box-shadow:
    var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
    var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.focus-visible\:outline-none:focus-visible {
  --tw-outline-style: none;
  outline-style: none;
}
.active\:\!no-underline:active {
  text-decoration-line: none !important;
}
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.\[\&_svg\]\:pointer-events-none svg {
  pointer-events: none;
}
.\[\&_svg\]\:shrink-0 svg {
  flex-shrink: 0;
}
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 20%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 20%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 20%;
  --primary: 0 0% 25%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 98%;
  --secondary-foreground: 0 0% 25%;
  --muted: 0 0% 98%;
  --muted-foreground: 0 0% 50%;
  --accent: 0 0% 96%;
  --accent-foreground: 0 0% 25%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 92%;
  --input: 0 0% 95%;
  --ring: 0 0% 40%;
  --primary-green: #404040;
  --primary-green-light: #737373;
  --accent-blue: #525252;
  --accent-purple: #737373;
  --accent-orange: #8a8a8a;
  --text-primary: #333;
  --text-secondary: #666;
  --text-light: #999;
  --bg-light: #fafafa;
  --bg-white: #fff;
  --bg-gradient-start: #fff;
  --bg-gradient-end: #fafafa;
  --shadow-sm: 0 1px 2px 0 #00000008;
  --shadow-md: 0 2px 4px -1px #0000000f;
  --shadow-lg: 0 4px 8px -2px #00000014;
  --shadow-xl: 0 8px 16px -4px #0000001a;
  --shadow-glow: 0 0 20px #00000014;
  --radius: 0.625rem;
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --chart-1: oklch(64.6% 0.222 41.116);
  --chart-2: oklch(60% 0.118 184.704);
  --chart-3: oklch(39.8% 0.07 227.392);
  --chart-4: oklch(82.8% 0.189 84.429);
  --chart-5: oklch(76.9% 0.188 70.08);
  --sidebar: oklch(98.5% 0 0);
  --sidebar-foreground: oklch(14.5% 0 0);
  --sidebar-primary: oklch(20.5% 0 0);
  --sidebar-primary-foreground: oklch(98.5% 0 0);
  --sidebar-accent: oklch(97% 0 0);
  --sidebar-accent-foreground: oklch(20.5% 0 0);
  --sidebar-border: oklch(92.2% 0 0);
  --sidebar-ring: oklch(70.8% 0 0);
}
.dark {
  --background: 0 0% 9%;
  --foreground: 0 0% 98%;
  --card: 0 0% 9%;
  --card-foreground: 0 0% 98%;
  --popover: 0 0% 9%;
  --popover-foreground: 0 0% 98%;
  --primary: 0 0% 98%;
  --primary-foreground: 0 0% 9%;
  --secondary: 0 0% 15%;
  --secondary-foreground: 0 0% 98%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 65%;
  --accent: 0 0% 15%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 20%;
  --input: 0 0% 20%;
  --ring: 0 0% 98%;
  --chart-1: oklch(48.8% 0.243 264.376);
  --chart-2: oklch(69.6% 0.17 162.48);
  --chart-3: oklch(76.9% 0.188 70.08);
  --chart-4: oklch(62.7% 0.265 303.9);
  --chart-5: oklch(64.5% 0.246 16.439);
  --sidebar: oklch(20.5% 0 0);
  --sidebar-foreground: oklch(98.5% 0 0);
  --sidebar-primary: oklch(48.8% 0.243 264.376);
  --sidebar-primary-foreground: oklch(98.5% 0 0);
  --sidebar-accent: oklch(26.9% 0 0);
  --sidebar-accent-foreground: oklch(98.5% 0 0);
  --sidebar-border: oklch(100% 0 0/0.1);
  --sidebar-ring: oklch(55.6% 0 0);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-primary);
  background: hsl(var(--background));
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    Fira Sans,
    Droid Sans,
    Helvetica Neue,
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
#root {
  min-height: 100vh;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #0000000d;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #d0d0d0 padding-box padding-box;
  border: 2px solid #0000;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b0b0b0 padding-box padding-box;
}
::-moz-selection {
  color: var(--text-primary);
  background: #00000014;
}
::selection {
  color: var(--text-primary);
  background: #00000014;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
.mapboxgl-map {
  font:
    12px/20px Helvetica Neue,
    Arial,
    Helvetica,
    sans-serif;
  overflow: hidden;
  position: relative;
  -webkit-tap-highlight-color: rgb(0 0 0/0);
}
.mapboxgl-canvas {
  left: 0;
  position: absolute;
  top: 0;
}
.mapboxgl-map:-webkit-full-screen {
  height: 100%;
  width: 100%;
}
.mapboxgl-canary {
  background-color: salmon;
}
.mapboxgl-canvas-container.mapboxgl-interactive,
.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass {
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer {
  cursor: pointer;
}
.mapboxgl-canvas-container.mapboxgl-interactive:active,
.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active {
  cursor: grabbing;
}
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas {
  touch-action: pan-x pan-y;
}
.mapboxgl-canvas-container.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas {
  touch-action: pinch-zoom;
}
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan
  .mapboxgl-canvas {
  touch-action: none;
}
.mapboxgl-ctrl-bottom,
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right,
.mapboxgl-ctrl-left,
.mapboxgl-ctrl-right,
.mapboxgl-ctrl-top,
.mapboxgl-ctrl-top-left,
.mapboxgl-ctrl-top-right {
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.mapboxgl-ctrl-top-left {
  left: 0;
  top: 0;
}
.mapboxgl-ctrl-top {
  left: 50%;
  top: 0;
  transform: translate(-50%);
}
.mapboxgl-ctrl-top-right {
  right: 0;
  top: 0;
}
.mapboxgl-ctrl-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mapboxgl-ctrl-bottom-right {
  bottom: 0;
  right: 0;
}
.mapboxgl-ctrl-bottom {
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.mapboxgl-ctrl-bottom-left {
  bottom: 0;
  left: 0;
}
.mapboxgl-ctrl-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mapboxgl-ctrl {
  clear: both;
  pointer-events: auto;
  transform: translate(0);
}
.mapboxgl-ctrl-top-left .mapboxgl-ctrl {
  float: left;
  margin: 10px 0 0 10px;
}
.mapboxgl-ctrl-top .mapboxgl-ctrl {
  float: left;
  margin: 10px 0;
}
.mapboxgl-ctrl-top-right .mapboxgl-ctrl {
  float: right;
  margin: 10px 10px 0 0;
}
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl,
.mapboxgl-ctrl-right .mapboxgl-ctrl {
  float: right;
  margin: 0 10px 10px 0;
}
.mapboxgl-ctrl-bottom .mapboxgl-ctrl {
  float: left;
  margin: 10px 0;
}
.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl,
.mapboxgl-ctrl-left .mapboxgl-ctrl {
  float: left;
  margin: 0 0 10px 10px;
}
.mapboxgl-ctrl-group {
  background: #fff;
  border-radius: 4px;
}
.mapboxgl-ctrl-group:not(:empty) {
  box-shadow: 0 0 0 2px #0000001a;
}
@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl-group:not(:empty) {
    box-shadow: 0 0 0 2px ButtonText;
  }
}
.mapboxgl-ctrl-group button {
  background-color: initial;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 29px;
  outline: none;
  overflow: hidden;
  padding: 0;
  width: 29px;
}
.mapboxgl-ctrl-group button + button {
  border-top: 1px solid #ddd;
}
.mapboxgl-ctrl button .mapboxgl-ctrl-icon {
  background-position: 50%;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  width: 100%;
}
@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl-icon {
    background-color: initial;
  }
  .mapboxgl-ctrl-group button + button {
    border-top: 1px solid ButtonText;
  }
}
.mapboxgl-ctrl-attrib-button:focus,
.mapboxgl-ctrl-group button:focus {
  box-shadow: 0 0 2px 2px #0096ff;
}
.mapboxgl-ctrl button:disabled {
  cursor: not-allowed;
}
.mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon {
  opacity: 0.25;
}
.mapboxgl-ctrl-group button:first-child {
  border-radius: 4px 4px 0 0;
}
.mapboxgl-ctrl-group button:last-child {
  border-radius: 0 0 4px 4px;
}
.mapboxgl-ctrl-group button:only-child {
  border-radius: inherit;
}
.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: #0000000d;
}
.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}
.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
}
@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
}
@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E");
}
@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active
  .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error
  .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background
  .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error
  .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting
  .mapboxgl-ctrl-icon {
  animation: mapboxgl-spin 2s linear infinite;
}
@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl
    button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active
    .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl
    button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error
    .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl
    button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background
    .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl
    button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error
    .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E");
  }
}
@keyframes mapboxgl-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
a.mapboxgl-ctrl-logo {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='0.9' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  height: 23px;
  margin: 0 0 -4px -4px;
  overflow: hidden;
  width: 88px;
}
a.mapboxgl-ctrl-logo.mapboxgl-compact {
  width: 23px;
}
@media (-ms-high-contrast: active) {
  a.mapboxgl-ctrl-logo {
    background-color: initial;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  a.mapboxgl-ctrl-logo {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23000'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
  background-color: #ffffff80;
  margin: 0;
  padding: 0 5px;
}
@media screen {
  .mapboxgl-ctrl-attrib.mapboxgl-compact {
    background-color: #fff;
    border-radius: 12px;
    box-sizing: initial;
    margin: 10px;
    min-height: 20px;
    padding: 2px 24px 2px 0;
    position: relative;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
    padding: 2px 28px 2px 8px;
    visibility: visible;
  }
  .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show,
  .mapboxgl-ctrl-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show,
  .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
    border-radius: 12px;
    padding: 2px 8px 2px 28px;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner {
    display: none;
  }
  .mapboxgl-ctrl-attrib-button {
    background-color: #ffffff80;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
    border: 0;
    border-radius: 12px;
    box-sizing: border-box;
    cursor: pointer;
    display: none;
    height: 24px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
  }
  .mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button,
  .mapboxgl-ctrl-left .mapboxgl-ctrl-attrib-button,
  .mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button {
    left: 0;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button,
  .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner {
    display: block;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button {
    background-color: #0000000d;
  }
  .mapboxgl-ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    bottom: 0;
    right: 0;
  }
  .mapboxgl-ctrl-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    right: 0;
  }
  .mapboxgl-ctrl-top-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    right: 0;
    top: 0;
  }
  .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    left: 0;
    top: 0;
  }
  .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    bottom: 0;
    left: 0;
  }
  .mapboxgl-ctrl-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    left: 0;
  }
}
@media screen and (-ms-high-contrast: active) {
  .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl-attrib a {
  color: #000000bf;
  text-decoration: none;
}
.mapboxgl-ctrl-attrib a:hover {
  color: inherit;
  text-decoration: underline;
}
.mapboxgl-ctrl-attrib .mapbox-improve-map {
  font-weight: 700;
  margin-left: 2px;
}
.mapboxgl-attrib-empty {
  display: none;
}
.mapboxgl-ctrl-scale {
  background-color: #ffffffbf;
  border: 2px solid #333;
  border-top: #333;
  box-sizing: border-box;
  color: #333;
  font-size: 10px;
  padding: 0 5px;
  white-space: nowrap;
}
.mapboxgl-popup {
  display: flex;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  will-change: transform;
}
.mapboxgl-popup-anchor-top,
.mapboxgl-popup-anchor-top-left,
.mapboxgl-popup-anchor-top-right {
  flex-direction: column;
}
.mapboxgl-popup-anchor-bottom,
.mapboxgl-popup-anchor-bottom-left,
.mapboxgl-popup-anchor-bottom-right {
  flex-direction: column-reverse;
}
.mapboxgl-popup-anchor-left {
  flex-direction: row;
}
.mapboxgl-popup-anchor-right {
  flex-direction: row-reverse;
}
.mapboxgl-popup-tip {
  border: 10px solid #0000;
  height: 0;
  width: 0;
  z-index: 1;
}
.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  align-self: center;
  border-bottom-color: #fff;
  border-top: none;
}
.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip {
  align-self: flex-start;
  border-bottom-color: #fff;
  border-left: none;
  border-top: none;
}
.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip {
  align-self: flex-end;
  border-bottom-color: #fff;
  border-right: none;
  border-top: none;
}
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  align-self: center;
  border-bottom: none;
  border-top-color: #fff;
}
.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip {
  align-self: flex-start;
  border-bottom: none;
  border-left: none;
  border-top-color: #fff;
}
.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip {
  align-self: flex-end;
  border-bottom: none;
  border-right: none;
  border-top-color: #fff;
}
.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
  align-self: center;
  border-left: none;
  border-right-color: #fff;
}
.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  align-self: center;
  border-left-color: #fff;
  border-right: none;
}
.mapboxgl-popup-close-button {
  background-color: initial;
  border: 0;
  border-radius: 0 3px 0 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}
.mapboxgl-popup-close-button:hover {
  background-color: #0000000d;
}
.mapboxgl-popup-content {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 2px #0000001a;
  padding: 10px 10px 15px;
  pointer-events: auto;
  position: relative;
}
.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content {
  border-top-left-radius: 0;
}
.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content {
  border-top-right-radius: 0;
}
.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content {
  border-bottom-left-radius: 0;
}
.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content {
  border-bottom-right-radius: 0;
}
.mapboxgl-popup-track-pointer {
  display: none;
}
.mapboxgl-popup-track-pointer * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mapboxgl-map:hover .mapboxgl-popup-track-pointer {
  display: flex;
}
.mapboxgl-map:active .mapboxgl-popup-track-pointer {
  display: none;
}
.mapboxgl-marker {
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity 0.2s;
  will-change: transform;
}
.mapboxgl-user-location-dot,
.mapboxgl-user-location-dot:before {
  background-color: #1da1f2;
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
.mapboxgl-user-location-dot:before {
  animation: mapboxgl-user-location-dot-pulse 2s infinite;
  content: "";
  position: absolute;
}
.mapboxgl-user-location-dot:after {
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 3px #00000059;
  box-sizing: border-box;
  content: "";
  height: 19px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 19px;
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading {
  height: 0;
  width: 0;
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  border-bottom: 7.5px solid #4aa1eb;
  content: "";
  position: absolute;
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  border-left: 7.5px solid #0000;
  transform: translateY(-28px) skewY(-20deg);
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after {
  border-right: 7.5px solid #0000;
  transform: translate(7.5px, -28px) skewY(20deg);
}
@keyframes mapboxgl-user-location-dot-pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(3);
  }
  to {
    opacity: 0;
    transform: scale(1);
  }
}
.mapboxgl-user-location-dot-stale {
  background-color: #aaa;
}
.mapboxgl-user-location-dot-stale:after {
  display: none;
}
.mapboxgl-user-location-accuracy-circle {
  background-color: #1da1f233;
  border-radius: 100%;
  height: 1px;
  width: 1px;
}
.mapboxgl-crosshair,
.mapboxgl-crosshair .mapboxgl-interactive,
.mapboxgl-crosshair .mapboxgl-interactive:active {
  cursor: crosshair;
}
.mapboxgl-boxzoom {
  background: #fff;
  border: 2px dotted #202020;
  height: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 0;
}
@media print {
  .mapbox-improve-map {
    display: none;
  }
}
.mapboxgl-scroll-zoom-blocker,
.mapboxgl-touch-pan-blocker {
  align-items: center;
  background: #000000b3;
  color: #fff;
  display: flex;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Helvetica,
    Arial,
    sans-serif;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity 0.75s ease-in-out;
  transition-delay: 1s;
  width: 100%;
}
.mapboxgl-scroll-zoom-blocker-show,
.mapboxgl-touch-pan-blocker-show {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}
.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page,
.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page
  .mapboxgl-canvas {
  touch-action: pan-x pan-y;
}
.mapboxgl-ctrl-separator {
  background-color: #e0e0e0;
  height: 1px;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-level-button {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  height: 44px;
  width: 44px;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-level-button:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-level-button:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-level-button:hover {
  background-color: #f5f5f5;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-level-button-selected {
  background-color: #4a5568;
  color: #fff;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-level-button-selected:hover {
  background-color: #2d3748;
}
/* --- START: NEW FEATURED MEDIA SECTION STYLES (2-COLUMN GRID) --- */
.featured-media-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.featured-media-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr; /* Stack columns on small screens */
  }
}

.media-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.slider-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary, #333);
  margin-bottom: 10px;
}

.slider-description {
  font-size: 0.95rem;
  color: var(--text-secondary, #666);
  margin-bottom: 20px;
}

/* 1. The Wrapper: Force it to be a reference point */
.featured-slider-wrapper {
  position: relative;
  width: 100%;        /* Critical for Chrome */
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  background: #000;   /* Fallback background */
  z-index: 1;         /* Ensures buttons sit on top */
}

/* 2. The Flex Container: Force it to fill the wrapper */
.featured-slider-content {
  display: flex;
  width: 100%;        /* Critical: Tells flex items they have space */
  height: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform; /* Performance optimization */
}

/* 3. The Slide: Explicitly size it to prevents collapse */
.featured-slide {
  width: 100%;        /* Force explicit width */
  min-width: 100%;    /* Prevent shrinking */
  flex: 0 0 100%;     /* Rigid flex sizing: Don't grow, don't shrink, be 100% */
  position: relative;
}

/* 4. The Video Container: The Aspect Ratio Hack */
.aspect-video {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.aspect-video iframe,
.aspect-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* 5. Controls: Ensure they stay on top */
.slider-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;       /* Explicit size ensures visibility */
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 20;       /* Higher z-index to sit above iframes */
  display: flex;     /* Center the arrow icon/text */
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-control-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  width: 20px;
  border-radius: 4px;
  background: #fff;
}
/* --- END: NEW FEATURED MEDIA SECTION STYLES --- */
.cluster-demo {
  position: relative;
  width: 100%;
  height: 260px;
  background: #f5f7f8;
  border-radius: 16px;
  overflow: hidden;
}

.cluster-point {
  width: 14px;
  height: 14px;
  background: #444;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

.cluster-center {
  font-size: 28px;
  transform: translate(-50%, -50%);
}

.cluster-radius {
  border: 2px dashed #4caf50;
  opacity: 0.6;
  animation: rotate 12s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.cluster-demo {
  position: relative;
  width: 100%;
  height: 260px;
  background: #f5f7f8;
  border-radius: 20px;
  overflow: hidden;
}

.cluster-radius {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* CARD WRAPPING */
.dbscan-card {
  background: #fff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  margin-bottom: 80px;
}

/* HEADER */
.dbscan-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

/* GRID LAYOUT */
.dbscan-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.dbscan-sim-area {
  position: relative;
}

/* SIMULATION CANVAS */
.cluster-demo {
  position: relative;
  width: 100%;
  height: 260px;
  background: #f5f7f8;
  border-radius: 20px;
  overflow: hidden;
}

/* OVERLAY STATS */
.dbscan-stats-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.overlay-stat {
  background: #ffffffdd;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  font-weight: 600;
  color: #333;
}

/* RADIUS ANIMATION */
.cluster-radius {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Move stats to top-right */
.dbscan-stats-overlay-right {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 20;
  align-items: flex-end;
}

.overlay-stat {
  background: #ffffffdd;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* Regenerate button */
.regen-btn {
  margin-top: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 6px;
  background: var(--primary-green);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: 0.2s ease;
}

.regen-btn:hover {
  background: var(--primary-green-light);
  transform: translateY(-2px);
}

/* Card container */
.dbscan-card {
  background: #fff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  margin-bottom: 80px;
}
/* --- DynaRyde Simulation Specific Styles --- */

#dynaryde-simulation {
  /* Ensures the section has proper spacing, matching your other sections */
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.simulation-wrapper {
  width: 100%;
  height: 650px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  position: relative; /* Good practice for containing iframes */
}

.simulation-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block; /* Removes potential whitespace at the bottom */
}

/* Optional: Adjust height for mobile screens so it doesn't take up too much vertical space */
@media (max-width: 768px) {
  .simulation-wrapper {
    height: 500px;
  }
}


/* --- DynaRyde Simulation Final Layout Fix --- */

/* 1. Override Global Section Styles */
#dynaryde-simulation {
  display: block !important; /* Disables flex to fix Safari collapsing */
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  box-sizing: border-box;
}

/* 2. Container Sizing */
#dynaryde-simulation .featured-media-container {
  width: 100%;             /* Use full available width */
  max-width: 1400px;       /* Cap it at 1400px for large screens */
  margin: 0 auto;          /* Center the block */
  display: block;          /* Ensure standard block behavior */
}

/* 3. The Wrapper (The Parent) */
.simulation-wrapper {
  position: relative;      /* CRITICAL: Establishes the anchor for the iframe */
  width: 100%;             /* Fills the container */
  height: 700px;           /* Explicit height */
  background-color: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  
  /* Safari fix: Force GPU layer to prevent glitching */
  transform: translateZ(0); 
}

/* 4. The Iframe (The Child) - Absolute Locking */
.simulation-wrapper iframe {
  position: absolute;      /* Takes iframe out of the document flow */
  top: 0;
  left: 0;
  width: 100% !important;  /* Forces it to fill wrapper width (Fixes Chrome) */
  height: 100% !important; /* Forces it to fill wrapper height */
  border: none;
  display: block;
}

/* =========================================
   1. DYNA-RYDE SIMULATION (ISOLATED)
   ========================================= */
#dynaryde-simulation {
  display: block !important; /* Fixes Safari/Chrome flex collapse bugs */
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  box-sizing: border-box;
}

/* Targeted STRICTLY via the new class name */
#dynaryde-simulation .dynaryde-container {
  width: 100%;
  max-width: 1400px; /* Wider layout for the simulation */
  margin: 0 auto;
  display: block;
}

.simulation-wrapper {
  position: relative;
  width: 100%;
  height: 700px; /* Fixed height prevents collapse */
  background-color: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateZ(0); /* Hardware acceleration for Safari */
}

.simulation-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

/* =========================================
   2. SLIDER & DBSCAN REPAIR (CHROME FIXES)
   ========================================= */

/* Force the Featured Media Container to hold its shape */
.featured-media-container {
  width: 100%; 
  max-width: 1200px;
  margin: 0 auto;
  display: block; /* Ensures it doesn't collapse to 0 height in Chrome */
}

/* Fix the Slider Flexbox issue on Chrome */
.featured-slide {
  flex: 0 0 100%;    /* FORCE width. Chrome interprets "flex: 1" as 0px sometimes */
  width: 100%;       /* Redundant backup */
  min-width: 100%;   /* Prevent shrinking */
}

/* Ensure the video aspect ratio box has a width base */
.aspect-video {
  width: 100%;
}

/* Fix DBSCAN Grid layout if it was collapsing */
.dbscan-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  width: 100%; /* Ensure grid fills the container */
}

/* Mobile fallback for DBSCAN */
@media (max-width: 968px) {
  .dbscan-layout {
    grid-template-columns: 1fr;
  }
}

/* --- NEW DBSCAN SECTION STYLES --- */

/* 1. The Wrapper Section */
.dbscan-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc); /* Subtle gradient background */
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 2. The Container (The Fix for Alignment) */
.dbscan-container {
  width: 100%;
  max-width: 1200px; /* Matches your other sections */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the header */
}

/* 3. The Card (Now full width of container) */
.dbscan-card {
  width: 100%; /* Force full width of the 1200px container */
  background: #fff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Ensure the layout inside the card stretches properly */
.dbscan-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
  .dbscan-layout {
    grid-template-columns: 1fr;
  }
  .dbscan-section {
    padding: 60px 16px;
  }
  .dbscan-card {
    padding: 24px;
  }
}
/* --- DYNA-RYDE SECTION STYLES (UPDATED) --- */

/* 1. Section Wrapper */
.dynaryde-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 2. The Container (Fixes left/right bounds to 1200px) */
.dynaryde-container {
  width: 100%;
  max-width: 1200px; /* Changed from 1400px to match the rest of the site */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* Forces header to center */
}

/* 3. The Simulation Box */
.simulation-wrapper {
  position: relative;
  width: 100%; /* Fills the 1200px container */
  height: 700px;
  background-color: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* Safari fix for iframes */
  transform: translateZ(0); 
}

.simulation-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .dynaryde-section {
    padding: 60px 16px;
  }
  .simulation-wrapper {
    height: 500px;
  }
}
/* --- DYNA-RYDE SECTION STYLES --- */

/* 1. Section Wrapper */
.dynaryde-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  width: 100%;
  display: flex;
  justify-content: center; /* Helps center the inner container */
}

/* 2. The Container (Fixes alignment to 1200px) */
.dynaryde-container {
  width: 100%;
  max-width: 1200px; /* This matches the rest of your site */
  margin: 0 auto;    /* Centers the container horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 3. The Simulation Box */
.simulation-wrapper {
  position: relative;
  width: 100%; /* Fills the 1200px container */
  height: 700px;
  background-color: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateZ(0); /* Performance fix for Safari */
}

.simulation-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .dynaryde-section {
    padding: 60px 16px;
  }
  .simulation-wrapper {
    height: 500px;
  }
}
