body {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.site-header .top-bar {
  background-color: #ffffff;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.site-header .top-bar .contact-info {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .top-bar .contact-info .email-link {
  color: #1f2937;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header .top-bar .contact-info .email-link i {
  color: #3A9F4C;
}
.site-header .top-bar .contact-info .email-link:hover {
  color: #3A9F4C;
}
.site-header .top-bar .contact-info .social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0;
}
.site-header .top-bar .contact-info .social-links .social-link {
  color: #1f2937;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}
.site-header .top-bar .contact-info .social-links .social-link:hover {
  color: #3A9F4C;
}
.site-header .main-header {
  padding: 1rem 0;
}
.site-header .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .main-nav .logo {
  display: block;
  flex-shrink: 0;
}
.site-header .main-nav .logo img {
  height: 65px !important;
  width: auto;
}
.site-header .main-nav .nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header .main-nav .nav-container .nav-links, .site-header .main-nav .nav-container .nav-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.site-header .main-nav .nav-container .nav-link {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}
.site-header .main-nav .nav-container .nav-link:hover, .site-header .main-nav .nav-container .nav-link.active {
  color: #3A9F4C;
}
.site-header .main-nav .nav-container .nav-dropdown {
  position: relative;
}
.site-header .main-nav .nav-container .nav-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.site-header .main-nav .nav-container .nav-dropdown .dropdown-trigger:hover {
  color: #3A9F4C;
}
.site-header .main-nav .nav-container .nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 200px;
  z-index: 100;
}
.site-header .main-nav .nav-container .nav-dropdown .dropdown-menu.show {
  display: block;
}
.site-header .main-nav .nav-container .nav-dropdown .dropdown-menu .dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.site-header .main-nav .nav-container .nav-dropdown .dropdown-menu .dropdown-item:hover {
  background: rgba(58, 159, 76, 0.1);
  color: #3A9F4C;
}
.site-header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .site-header .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .site-header .nav-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .site-header .nav-container.active {
    display: block;
  }
  .site-header .nav-container .nav-links,
  .site-header .nav-container .nav-actions {
    margin-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .site-header .nav-container .nav-link {
    width: 100%;
    padding: 0.5rem 0;
  }
  .site-header .nav-container .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header .main-nav .nav-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .site-header .main-nav .nav-container.active {
    display: block;
  }
  .site-header .main-nav .nav-container .nav-links,
  .site-header .main-nav .nav-container .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .site-header .main-nav .nav-container .nav-link {
    width: 100%;
    padding: 0.5rem 0;
  }
  .site-header .main-nav .nav-container .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cookie-banner .container {
    flex-direction: column;
    gap: 1rem;
  }
  .cookie-banner .container .cookie-content {
    text-align: center;
  }
  .cookie-banner .container .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  .cookie-banner .container .cookie-actions .btn {
    flex: 1;
    text-align: center;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.see-for-yourself-cta {
  justify-content: center;
  display: flex;
  margin-top: 2rem;
}

.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #3A9F4C, #2d7f3c);
  overflow: hidden;
  color: #ffffff;
}
.hero .hero-wrapper {
  display: grid;
  grid-template-areas: "content image" "cta image";
  gap: 0 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .hero .hero-wrapper {
    grid-template-areas: "content" "image" "cta";
    text-align: center;
    gap: 2rem;
  }
}
.hero .hero-wrapper .hero-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
@media (max-width: 991px) {
  .hero .hero-wrapper .hero-content {
    align-items: center;
  }
}
.hero .hero-wrapper .hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero .hero-wrapper .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content h1 {
    font-size: 2rem;
  }
}
.hero .hero-wrapper .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.hero .hero-wrapper .hero-content .hero-subtitle .highlight {
  background-color: #ffd302;
  padding: 5px 5px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: black;
}
@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content .hero-subtitle {
    font-size: 1.125rem;
  }
}
.hero .hero-wrapper .hero-image {
  grid-area: image;
}
.hero .hero-wrapper .hero-cta {
  grid-area: cta;
  display: flex;
  gap: 1rem;
  justify-content: left;
}
@media (max-width: 991px) {
  .hero .hero-wrapper .hero-cta {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero .hero-wrapper .hero-cta {
    flex-direction: column;
  }
}
.hero .hero-wrapper .hero-cta .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.hero .hero-wrapper .hero-cta .btn-outline:hover {
  background-color: #ffffff;
  color: #3A9F4C;
}
.hero .hero-wrapper .hero-cta .btn-primary {
  background-color: #ffffff;
  color: #3A9F4C;
}
.hero .hero-wrapper .hero-cta .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.hero .hero-wrapper .hero-cta .btn-cta-hero {
  padding: 0.45rem 2.5rem !important;
  background-color: #ffd302;
  color: black;
}
.hero .hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}
.hero .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (max-width: 576px) {
  .hero .hero-content .hero-subtitle {
    font-size: 1.125rem;
  }
}
.hero .hero-image .hero-image-wrapper {
  position: relative;
  width: 100%;
  perspective: 1000px;
  animation: mainImageFloat 8s ease-in-out infinite;
}
.hero .hero-image .hero-main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.hero .hero-image .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero .hero-image .float-element {
  position: absolute;
  opacity: 0.9;
}
.hero .hero-image .float-element.float-1 {
  top: 15%;
  right: 10%;
  width: 80px;
  animation: float1 4s ease-in-out infinite;
}
.hero .hero-image .float-element.float-2 {
  bottom: 20%;
  left: 15%;
  width: 60px;
  animation: float2 5s ease-in-out infinite;
}
.hero .hero-image .float-element.float-3 {
  top: 30%;
  left: 10%;
  width: 70px;
  animation: float3 6s ease-in-out infinite;
}
@media (max-width: 991px) {
  .hero .hero-image {
    max-width: 80%;
    margin: 0 auto;
  }
  .hero .hero-image .hero-image-wrapper {
    animation: mainImageFloatMobile 8s ease-in-out infinite;
  }
  .hero .hero-image .float-element.float-1 {
    width: 60px;
  }
  .hero .hero-image .float-element.float-2 {
    width: 45px;
  }
  .hero .hero-image .float-element.float-3 {
    width: 52px;
  }
}

@keyframes mainImageFloat {
  0%, 100% {
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(-2deg) translateY(-10px);
  }
}
@keyframes mainImageFloatMobile {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float1 {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}
@keyframes float2 {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(15px) rotate(-5deg);
  }
}
@keyframes float3 {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(-3deg);
  }
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: #3A9F4C;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #2d7f3c;
}
.btn-outline {
  border: 2px solid #3A9F4C;
  color: #3A9F4C;
}
.btn-outline:hover {
  background-color: #3A9F4C;
  color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}
.feature-card p {
  color: rgb(67.7674418605, 89.6279069767, 120.2325581395);
}

.text-center {
  text-align: center;
}

.core-features {
  padding: 40px 0;
  background: var(--color-light);
}
.core-features .core-features-image {
  max-width: 60rem;
  margin-top: 3rem;
  width: 90%;
}
.core-features .core-features-image--desktop {
  display: block;
  margin: 3rem auto;
}
@media (max-width: 991px) {
  .core-features .core-features-image--desktop {
    display: none;
  }
}
.core-features .core-features-image--mobile {
  display: none;
}
@media (max-width: 991px) {
  .core-features .core-features-image--mobile {
    display: block;
  }
}
.core-features .section-header {
  margin-bottom: 60px;
  text-align: center;
}
.core-features .section-header h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
}
.core-features .section-header .lead {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.core-features .features-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.core-features .features-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .core-features .features-nav {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.core-features .features-nav .tab-btn {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.core-features .features-nav .tab-btn:hover {
  background: #3A9F4C;
  border-color: #3A9F4C;
  color: #ffffff;
}
.core-features .features-nav .tab-btn:hover p {
  color: white;
}
.core-features .features-nav .tab-btn.active {
  background: #3A9F4C;
  border-color: #3A9F4C;
  color: #ffffff;
}
.core-features .features-nav .tab-btn.active .tab-icon {
  background: rgba(255, 255, 255, 0.2);
}
.core-features .features-nav .tab-btn.active .tab-icon img {
  color: #ffffff;
  filter: brightness(0) invert(1);
}
.core-features .features-nav .tab-btn.active p {
  color: white;
}
.core-features .features-nav .tab-btn .tab-icon {
  width: 56px;
  height: 56px;
  background: #f3f4f6;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.core-features .features-nav .tab-btn .tab-icon img {
  width: 24px;
  height: 24px;
  color: #3A9F4C;
}
.core-features .features-nav .tab-btn h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: inherit;
}
.core-features .features-nav .tab-btn p {
  font-size: 0.875rem;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
}
.core-features .features-content {
  position: relative;
  min-height: 400px;
  margin-top: 40px;
}
.core-features .features-content .tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.core-features .features-content .tab-content.active {
  display: block;
  opacity: 1;
}
.core-features .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .core-features .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.core-features .feature-text h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--color-text);
}
.core-features .feature-text .btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .core-features .feature-text {
    order: 2;
  }
}
.core-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.core-features .feature-list li {
  margin-bottom: 24px;
  padding-left: 28px;
  position: relative;
  text-align: left;
}
.core-features .feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.2;
}
.core-features .feature-list li:last-child {
  margin-bottom: 0;
}
.core-features .feature-list li strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--color-text);
}
.core-features .feature-list li span {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}
.core-features .feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
@media (max-width: 992px) {
  .core-features .feature-image {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
}
.core-features .feature-image img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  margin: 0 auto;
}
.core-features .feature-image img:hover {
  transform: scale(1.02);
}

.social-proof {
  padding: 20px 0;
  background-color: #ffffff;
}
.social-proof .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.social-proof .testimonial-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-proof .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.social-proof .testimonial-card .customer-website {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.social-proof .testimonial-card .customer-website img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.social-proof .testimonial-card .customer-website:hover img {
  transform: scale(1.05);
}
.social-proof .testimonial-card .testimonial-content {
  padding: 24px;
}
.social-proof .testimonial-card .customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.social-proof .testimonial-card .customer-info .customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.social-proof .testimonial-card .customer-info .customer-details h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #1f2937;
}
.social-proof .testimonial-card .customer-info .customer-details p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: grey;
}
.social-proof .testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #1f2937;
  font-style: italic;
}
.social-proof .testimonial-card .rating {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
@media (max-width: 1200px) {
  .social-proof .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .social-proof {
    padding: 60px 0;
  }
  .social-proof .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .social-proof .testimonial-card .customer-website {
    height: 160px;
  }
  .social-proof .testimonial-card .testimonial-content {
    padding: 20px;
  }
  .social-proof .testimonial-card blockquote {
    font-size: 0.95rem;
  }
}

.d-none {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

.email-icon {
  width: 18px;
  height: 18px;
}

.log-in-btn {
  display: inline-block;
  background: #3A9F4C;
  border: none;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.log-in-btn:hover {
  background: rgb(44.3686635945, 121.6313364055, 58.1382488479);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  position: relative;
  margin-top: 2.5rem;
}

.how-step-card {
  position: relative;
  background: linear-gradient(135deg, #f8fff8 60%, #e8f5e9 100%);
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(60, 80, 60, 0.1);
  padding: 1.5rem 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.how-step-card:hover {
  box-shadow: 0 12px 40px rgba(60, 80, 60, 0.18);
  transform: translateY(-6px) scale(1.03);
}
.how-step-card:hover .value-prop-video-wrapper {
  box-shadow: 0 0 0 6px #ffd302;
}
.how-step-card:hover .step-badge {
  background: #ffd302;
  color: #222;
  transform: scale(1.1) rotate(-6deg);
}
.how-step-card h3 {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3A9F4C;
  letter-spacing: 0.01em;
}
.how-step-card .step-action {
  font-weight: 600;
  color: #2d7f3c;
  margin: 0.4rem 0 0.4rem 0;
  font-size: 1rem;
}
.how-step-card .step-desc {
  color: #1f2937;
  text-align: center;
  font-size: 0.98rem;
  margin-top: 0.4rem;
}

.step-badge {
  position: absolute;
  top: -22px;
  left: 24px;
  background: #3A9F4C;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(60, 80, 60, 0.1);
  border: 3px solid #fff;
  z-index: 2;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.value-prop-video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60, 80, 60, 0.1);
  background: #f3f4f6;
  position: relative;
  margin-bottom: 0.5rem;
}
.value-prop-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
  transition: box-shadow 0.2s;
  background: #f3f4f6;
}
.value-prop-video-wrapper .play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.value-prop-video-wrapper .play-icon:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #3A9F4C;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.video-modal {
  background: transparent;
  border-radius: 1rem;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-modal video {
  width: 80vw;
  max-width: 800px;
  max-height: 70vh;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.video-modal-close {
  position: absolute;
  top: -32px;
  right: 0;
  background: #fff;
  color: #222;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.feature-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(60, 80, 60, 0.14);
  transform: translateY(-4px) scale(1.03);
}
.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3A9F4C;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #1f2937;
  font-size: 1rem;
}

.features-social-proof {
  margin-top: 2rem;
  font-style: italic;
  color: #2d7f3c;
}

.faq-section {
  padding: 100px 0;
  background: #f8fafc;
  margin-top: 80px;
}
.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.faq-section .faq-category h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: #1f2937;
}
.faq-section .faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.faq-section .faq-item:last-child {
  margin-bottom: 0;
}
.faq-section .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #1f2937;
  font-weight: 500;
  transition: all 0.3s ease;
}
.faq-section .faq-question span {
  padding-right: 40px;
  font-size: 1rem;
  line-height: 1.5;
}
.faq-section .faq-question .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.faq-section .faq-question[aria-expanded=true] {
  background: rgba(58, 159, 76, 0.03);
}
.faq-section .faq-question[aria-expanded=true] .icon {
  transform: rotate(180deg);
}
.faq-section .faq-question:hover {
  background: rgba(58, 159, 76, 0.05);
}
.faq-section .faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: grey;
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-section .faq-answer p {
  margin: 0;
}
.faq-section .faq-cta {
  margin-top: 60px;
}
.faq-section .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #1f2937;
}
@media (max-width: 1200px) {
  .faq-section .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .faq-section .faq-category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .faq-section .faq-question span {
    font-size: 0.95rem;
  }
}

.discrete-section {
  padding: 100px 0;
  background: #ffffff;
  color: #1f2937;
}
.discrete-section .discrete-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.discrete-section .discrete-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
.discrete-section .discrete-content .discrete-lead {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.discrete-section .discrete-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.discrete-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.discrete-section .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #3A9F4C;
}
.discrete-section .feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3A9F4C, #2d7f3c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.discrete-section .feature-item .feature-icon svg {
  width: 24px;
  height: 24px;
}
.discrete-section .feature-item .feature-content {
  flex: 1;
}
.discrete-section .feature-item .feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.discrete-section .feature-item .feature-content p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .discrete-section {
    padding: 60px 0;
  }
  .discrete-section .discrete-content h2 {
    font-size: 2rem;
  }
  .discrete-section .discrete-content .discrete-lead {
    font-size: 1.1rem;
  }
  .discrete-section .discrete-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .discrete-section .feature-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .discrete-section .feature-item .feature-icon {
    align-self: center;
  }
}

.offer-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  color: #1f2937;
}
.offer-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.offer-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1.5rem;
}
.offer-section .offer-lead {
  font-size: 1.25rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.offer-section .offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.offer-section .offer-card {
  background: #ffffff;
  color: #1f2937;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  text-align: center;
}
.offer-section .offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #dee2e6;
}
.offer-section .offer-card:hover .offer-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #3A9F4C, #2d7f3c);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(45, 127, 60, 0.3);
}
.offer-section .offer-card .offer-icon {
  width: 64px;
  height: 64px;
  background: #f0f2f5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
  color: #3A9F4C;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.offer-section .offer-card .offer-icon svg {
  width: 32px;
  height: 32px;
}
.offer-section .offer-card .offer-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.offer-section .offer-card .offer-desc {
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  .offer-section h2 {
    font-size: 2rem;
  }
  .offer-section .offer-lead {
    font-size: 1.1rem;
  }
  .offer-section .offer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .offer-section .offer-card {
    padding: 2rem 1.5rem;
  }
  .offer-section .offer-card .offer-icon {
    width: 56px;
    height: 56px;
  }
  .offer-section .offer-card .offer-icon svg {
    width: 28px;
    height: 28px;
  }
  .offer-section .offer-card .offer-title {
    font-size: 1.125rem;
  }
}

.final-cta-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 500px;
  background: linear-gradient(135deg, #3A9F4C, rgb(96.366359447, 197.133640553, 114.3248847926));
  border-radius: 0 0 50% 50%;
  z-index: 1;
}
.final-cta-section .container {
  position: relative;
  z-index: 2;
}
.final-cta-section .final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  padding: 4rem;
}
.final-cta-section .final-cta-content .final-cta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3A9F4C, #2d7f3c);
  color: #ffffff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(45, 127, 60, 0.3);
}
.final-cta-section .final-cta-content .final-cta-icon svg {
  width: 32px;
  height: 32px;
}
.final-cta-section .final-cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}
.final-cta-section .final-cta-content .lead {
  color: #4b5563;
  margin-bottom: 2rem;
}
.final-cta-section .final-cta-content .final-cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .final-cta-section .final-cta-content .final-cta-benefits {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.final-cta-section .final-cta-content .final-cta-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--cta-text-color);
}
.final-cta-section .final-cta-content .final-cta-benefits li .benefit-icon {
  width: 20px;
  height: 20px;
  color: #3A9F4C;
}
.final-cta-section .final-cta-form-wrapper h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.final-cta-section .final-cta-form-wrapper .form-group {
  margin-bottom: 1.25rem;
}
.final-cta-section .final-cta-form-wrapper .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 0.5rem;
}
.final-cta-section .final-cta-form-wrapper .form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.final-cta-section .final-cta-form-wrapper .form-group input:focus {
  outline: none;
  border-color: #3A9F4C;
  box-shadow: 0 0 0 3px rgba(58, 159, 76, 0.15);
}
.final-cta-section .final-cta-form-wrapper .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  background: #3A9F4C;
  border: none;
  border-radius: 0.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s;
}
.final-cta-section .final-cta-form-wrapper .btn-primary:hover {
  background: #2d7f3c;
}
.final-cta-section .final-cta-form-wrapper .btn-primary svg {
  width: 20px;
  height: 20px;
}
.final-cta-section .final-cta-form-wrapper .form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.final-cta-section .final-cta-form-wrapper .form-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .final-cta-section .final-cta-grid {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  .final-cta-section {
    padding: 60px 0;
  }
  .final-cta-section::before {
    height: 300px;
  }
  .final-cta-section .final-cta-grid {
    padding: 2rem;
    gap: 2.5rem;
  }
  .final-cta-section .final-cta-content h2 {
    font-size: 1.75rem;
  }
  .final-cta-section .final-cta-form-wrapper h4 {
    font-size: 1.25rem;
  }
}

.flight-engine-section {
  background: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  color: #2d3147;
}

.flight-engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flight-engine-content {
  max-width: 540px;
  order: 2;
}

.flight-engine-content h2 {
  font-size: 2.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.flight-engine-content .lead {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.flight-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 1rem;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-text h3 {
  color: #2d3147;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.flight-engine-image {
  position: relative;
  order: 1;
}

.flight-engine-image img {
  width: 100%;
  transition: transform 0.3s ease;
}

.flight-engine-image::before {
  content: "";
  position: absolute;
  top: 3rem;
  right: 3rem;
  bottom: -3rem;
  left: -3rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 20px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .flight-engine-section {
    padding: 6rem 0;
  }
  .flight-engine-grid {
    gap: 4rem;
  }
  .flight-engine-content h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .flight-engine-section {
    padding: 4rem 0;
  }
  .flight-engine-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  .flight-engine-content {
    max-width: 100%;
    text-align: center;
  }
  .feature-item {
    padding: 1.5rem;
  }
  .flight-engine-image::before {
    top: 2rem;
    right: 2rem;
    bottom: -2rem;
    left: -2rem;
  }
}
.experience-section {
  background: white;
  color: #23283a;
  padding: 4rem 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.experience-content h2 {
  font-size: 2.5rem;
  color: inherit;
  margin-bottom: 1.2rem;
}

.experience-content .lead {
  color: inherit;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.experience-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}

.experience-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  transition: transform 0.2s;
}

.experience-features li:hover {
  transform: translateX(8px);
}

.experience-features .feature-icon {
  font-size: 1.4rem;
  background: #f8fafc;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  border: 0.5px #e4e4e4 solid;
}

.experience-features li span:last-child {
  color: inherit;
  font-size: 1.1rem;
}

.experience-image {
  position: relative;
}

.experience-image img {
  width: 100%;
  transition: transform 0.3s;
}

.experience-image:hover img {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .flight-engine-grid,
  .experience-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .flight-features,
  .experience-features {
    max-width: 600px;
    margin: 0 auto;
  }
  .feature-item,
  .experience-features li {
    text-align: left;
  }
}
.footer-logo-img {
  height: 60px;
  width: auto;
}

/*# sourceMappingURL=theme.css.map */
