:root {
  --dark-green: #013536;
  --green-primary: #20D362;
  --green-light: #2BDA6C;
  --green-lighter: #4BF88B;
  --green-background: #D8FEC8;
  --green-surface: #E4FFD8;
  --green-glow: rgba(32, 211, 98, 0.07);
  --green-glow-hover: rgba(32, 211, 98, 0.14);
  --text-white: #ffffff;
  --text-gray: #525152;
  --text-gray-light: #809FA0;
  --text-gray-placeholder: #A6A6A6;
  --text-dark: #111111;
  --text-orange-light: #FFD0C7;
  --bg-light-gray: #F0F0F0;
  --bg-beige: #FCF5EC;
  --bg-orange: #EE5A3D;
  --bg-dark-secondary: #024041;
  --bg-footer: #111111;
  --border-light: #cccccc;
  --border-error: #ff4444;
  --border-footer: #333333;
  --transition: all 0.3s ease;
  --transition-fast: all 0.3s;
  --font-primary: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Bricolage Grotesque", "Onest", sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--text-gray);
  background-color: var(--text-white);
  overflow-x: hidden;
  width: 100%;
}
body.nav-open {
  overflow: hidden;
}

main {
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 15px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
img[loading=lazy] {
  transition: opacity 0.3s ease;
}
img[loading=lazy]:not(.loaded) {
  opacity: 0;
}
img[loading=lazy].loaded {
  opacity: 1;
}

.text-white {
  color: var(--text-white) !important;
}

.text-gray {
  color: var(--text-gray-light) !important;
}

/* Skip Links for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--dark-green);
  color: var(--text-white);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
  font-weight: 500;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 6px;
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 130%;
  color: var(--text-dark);
}

h1 {
  color: var(--green-background);
  font-size: 64px;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 56px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 56px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  h2 {
    font-size: 44px !important;
  }
}
@media (max-width: 1024px) {
  h2 {
    font-size: 38px !important;
  }
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 30px !important;
  }
}

h3 {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 26px !important;
  }
}
@media (max-width: 767.98px) {
  h3 {
    font-size: 22px !important;
  }
}

h4 {
  font-size: 24px;
}
@media (max-width: 1024px) {
  h4 {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  h4 {
    font-size: 18px;
  }
}

.text {
  color: var(--text-gray);
  font-size: 20px;
  line-height: 170%;
}
@media (max-width: 767.98px) {
  .text {
    font-size: 18px;
  }
}
.text-md {
  font-size: 16px;
}
.text-sm {
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 24px;
  border: none !important;
  border-radius: 50px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  box-sizing: border-box;
  font-family: var(--font-primary);
  overflow: hidden;
}
.btn--primary {
  color: var(--green-primary);
  background: var(--green-glow);
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}
.btn--primary:hover {
  background: var(--green-glow-hover);
  transition: all 500ms linear 1ms;
}
.btn--main {
  background-color: var(--green-light);
  color: var(--dark-green);
}
.btn--main:hover {
  background: var(--green-primary);
  color: var(--dark-green);
}
.btn--big {
  font-size: 18px;
  padding: 20px 40px;
  min-height: 64px;
}
.btn--pricing-outline {
  border-radius: 47px;
  border: 2px solid var(--green-light) !important;
  background: transparent;
  color: var(--dark-green);
}
.btn--pricing-outline .btn-arrow {
  transition: transform 0.3s ease;
}
.btn--pricing-outline:hover {
  background: var(--green-light);
  color: var(--dark-green);
  border-color: var(--green-light);
}
.btn--pricing-outline:hover .btn-arrow {
  transform: translateX(4px);
}
.btn--pricing-filled {
  border-radius: 47px;
  border: 2px solid var(--green-light);
  background: var(--green-light);
  color: var(--dark-green);
}
.btn--pricing-filled .btn-arrow {
  transition: transform 0.3s ease;
}
.btn--pricing-filled:hover {
  border: 2px solid var(--green-lighter);
  background: var(--green-lighter);
  color: var(--dark-green);
}
.btn--pricing-filled:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-with-border {
  position: relative;
}
.btn-with-border span {
  position: relative;
  z-index: 2;
}
.btn-with-border .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--text-white);
  stroke-width: 2;
  stroke-dasharray: 120 344.5;
  stroke-dashoffset: 0;
  filter: url(#glow);
  border-radius: 8px;
  opacity: 0;
}
.btn-with-border:hover svg {
  opacity: 1;
  animation: snake-run 3s linear infinite;
}

@keyframes snake-run {
  to {
    stroke-dashoffset: 464.5px;
  }
}
.header {
  background-color: var(--dark-green);
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo .logo-img {
  height: 36px;
}
@media (max-width: 991.98px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--dark-green);
    z-index: 9999;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .header__nav.mobile-active {
    right: 0;
  }
  .header__nav .nav-list {
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .header__nav .nav-list li {
    width: 100%;
  }
  .header__nav .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
  }
  .header__nav .nav-link:hover {
    color: var(--green-light);
  }
  .header__nav .nav-link::after {
    display: none;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .header__actions .btn--primary {
    display: none;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-link {
  color: var(--bg-beige);
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  text-transform: capitalize;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--green-light);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-light);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Mobile Navigation Close Button */
.mobile-nav-close {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.mobile-nav-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.mobile-nav-close svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 991.98px) {
  .mobile-nav-close {
    display: flex;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: var(--transition);
}
.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1100;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991.98px) {
  .mobile-overlay.active {
    width: calc(100% - 320px);
  }
}

/* Main Content */
main {
  margin-top: 88px;
}
@media (max-width: 991.98px) {
  main {
    margin-top: 82px;
  }
}

.hero {
  padding-bottom: 80px;
  background-color: var(--dark-green);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 50px;
}
@media (min-width: 768px) {
  .hero__content {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.hero__title-highlight {
  position: relative;
}
.hero__title-highlight::after {
  position: absolute;
  bottom: -40px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/svg/green-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1200px) {
  .hero__title-highlight::after {
    bottom: -30px;
  }
}
@media (max-width: 1024px) {
  .hero__title-highlight::after {
    bottom: -25px;
  }
}
.hero__text {
  max-width: 615px;
}
.hero__title {
  margin-bottom: 30px;
}
.hero__subtitle {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 550px;
}
@media (max-width: 767.98px) {
  .hero__subtitle {
    max-width: none;
    margin: 0 auto 2rem;
  }
}
.hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero__actions .contact-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  opacity: 0.9;
  transition: var(--transition);
}
.hero__actions .contact-link:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .hero__actions {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
  .hero__actions .btn--start {
    min-height: 48px;
    padding: 0 28px;
    font-size: 1rem;
  }
}
.hero__image {
  display: flex;
  justify-content: center;
  animation: heroFloat 3s ease-in-out infinite;
}
@media (max-width: 767.98px) {
  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }
}

/* Phone Mockup */
.phone-mockup {
  object-fit: cover;
  transition: var(--transition) !important;
}
.phone-mockup:hover {
  transform: translateY(-5px);
}

/* Hero Image Floating Animation */
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.highlight {
  color: var(--green-primary);
}

/* Intro Section */
.intro {
  padding: 150px 0 60px;
  color: var(--text-dark);
}
@media (max-width: 767.98px) {
  .intro {
    padding: 80px 0 40px;
  }
}

/* Team Section */
.team {
  padding: 0px 0px 150px;
}
@media (max-width: 767.98px) {
  .team {
    padding: 0px 0 80px;
  }
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .team__grid {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background: var(--text-white);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.team-card__name {
  margin-bottom: 16px;
}
.team-card__hero {
  margin-bottom: 30px;
}
.team-card__hero .team-card__image {
  object-fit: cover;
}
.team-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.team-card__description {
  margin-bottom: 30px;
}
.team-card__actions {
  background: var(--bg-light-gray);
  border-radius: 20px;
  padding: 8px;
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.team-card__actions-text {
  font-weight: 500;
  text-transform: capitalize;
  flex: 1;
  text-align: center;
  padding: 0 8px;
}
.team-card__qr {
  width: 70px;
  height: 70px;
  background: var(--text-white);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-card__qr img {
  object-fit: contain;
}
.team-card--coming-soon {
  border-radius: 20px;
  padding: 40px;
  background: var(--dark-green);
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.team-card__coming-soon-title {
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .team-card__coming-soon-title {
    font-size: 42px;
  }
}
@media (max-width: 991.98px) {
  .team-card__coming-soon-title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .team-card__coming-soon-title {
    font-size: 24px;
  }
}
.team-card__dots-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.team-card__footer {
  margin-top: auto;
  position: relative;
  z-index: 1;
  max-width: 180px;
}
.team-card__footer-text {
  font-size: 20px;
  color: var(--green-background);
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .team-card {
    min-height: 480px;
  }
}

/* Stats Section */
.stats {
  padding: 0px 0 150px;
}
@media (max-width: 767.98px) {
  .stats {
    padding: 0px 0 80px;
  }
}
.stats__title {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .stats__title {
    margin-bottom: 30px;
  }
}
.stats__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .stats__features {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__features .feature:nth-child(3) {
    grid-column: 1/-1;
    max-width: 50%;
    justify-self: center;
  }
}
@media (min-width: 992px) {
  .stats__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 40px 28px;
  border-radius: 30px;
  background: var(--bg-light-gray);
  display: flex;
  align-items: center;
  gap: 20px;
}
.feature__icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.feature__content h4 {
  margin-bottom: 10px;
}

.features {
  padding: 0px 0px 150px;
}
@media (max-width: 767.98px) {
  .features {
    padding: 0px 0 80px;
  }
}
.features__title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .features__title {
    margin-bottom: 30px;
  }
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
  }
}

.feature-card {
  background-color: var(--text-white);
  border-radius: 30px;
  padding: 50px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card__content {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.feature-card__content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .feature-card--large .feature-card__content {
    flex: 1;
    margin-right: 40px;
  }
  .feature-card--small .feature-card__content {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .feature-card {
    flex-direction: row;
    align-items: center;
    height: 384px;
  }
  .feature-card--large {
    grid-column: span 7;
  }
  .feature-card--small {
    grid-column: span 5;
  }
}
.feature-card--intelligence {
  background: var(--bg-beige);
}
@media (min-width: 768px) {
  .feature-card--intelligence {
    background-image: url("../images/jpg/agent-1.jpg");
    grid-column: 1/8;
    grid-row: 1;
  }
}
.feature-card--intelligence .feature-card__content {
  max-width: 390px;
}
.feature-card--automate {
  background: var(--bg-orange);
}
@media (min-width: 768px) {
  .feature-card--automate {
    background-image: url("../images/jpg/agent-2.jpg");
    grid-column: 8/13;
    grid-row: 1;
  }
}
.feature-card--automate .feature-card__content {
  max-width: 240px;
}
.feature-card--automate .feature-card__content p {
  color: var(--text-orange-light);
}
.feature-card--agent {
  background: var(--bg-beige);
}
@media (min-width: 768px) {
  .feature-card--agent {
    background-image: url("../images/jpg/agent-3.jpg");
    grid-column: 1/6;
    grid-row: 2;
  }
}
.feature-card--agent .feature-card__content {
  max-width: 240px;
}
.feature-card--scale {
  background: var(--dark-green);
}
@media (min-width: 768px) {
  .feature-card--scale {
    background-image: url("../images/jpg/agent-4.jpg");
    grid-column: 6/13;
    grid-row: 2;
  }
}
.feature-card--scale .feature-card__content {
  max-width: 330px;
}

.pricing {
  padding: 0 0 40px;
}
.pricing__title {
  text-align: center;
  margin-bottom: 20px;
}
.pricing__subtitle {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .pricing__subtitle {
    margin-bottom: 30px;
  }
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 992px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.pricing-card {
  background: var(--green-surface);
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 392px;
}
.pricing-card:hover {
  transform: translateY(-8px);
}
.pricing-card--usage {
  background: var(--dark-green);
}
.pricing-card--usage .pricing-card__price {
  color: var(--green-surface);
}
.pricing-card__header {
  margin-bottom: 30px;
}
.pricing-card__label {
  color: var(--green-primary);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}
.pricing-card__price {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 10px;
}
.pricing-card__additional {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.pricing-card__description {
  flex-grow: 1;
  margin-bottom: 40px;
}
.pricing-card__button {
  width: 100%;
  margin-top: auto;
  padding: 16px 24px;
  font-size: 16px;
  min-height: 64px;
}
@media (max-width: 767.98px) {
  .pricing-card__button {
    padding: 14px 20px;
    font-size: 15px;
    min-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .pricing-card {
    padding: 30px;
    min-height: 0;
  }
  .pricing-card__price {
    font-size: 30px;
  }
}

.contact {
  padding: 100px 0 140px;
}
@media (max-width: 767.98px) {
  .contact {
    padding: 40px 0 80px;
  }
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.contact__message {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .contact__message {
    padding-right: 40px;
  }
}
.contact__title {
  margin-bottom: 20px;
}
.contact__description {
  margin-bottom: 30px;
}
.contact__rating {
  margin-top: 20px;
}
.contact__stars {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.contact__review {
  margin-bottom: 20px;
}
.contact__author-name {
  color: var(--green-primary);
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 20px;
}
.contact__form-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .contact__form-wrapper {
    justify-content: flex-start;
  }
}
.contact__form-card {
  border-radius: 30px;
  background: var(--bg-light-gray);
  padding: 50px;
  width: 100%;
  max-width: 670px;
}
@media (max-width: 767.98px) {
  .contact__form-card {
    padding: 30px;
  }
}
.contact__form-title {
  color: var(--text-dark);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .contact__form-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.form-label {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 20px 30px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-primary);
  background: var(--text-white);
  transition: var(--transition);
  resize: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-gray-placeholder);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(43, 218, 108, 0.1);
}
.form-input:hover,
.form-textarea:hover {
  border-color: var(--border-light);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.btn--contact-submit {
  width: 100%;
  background: var(--green-light);
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 500;
  min-height: 64px;
  line-height: 1.3;
  padding: 18px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 14px;
}
.btn--contact-submit:hover {
  background: var(--green-lighter);
  transform: translateY(-2px);
}
.btn--contact-submit:active {
  transform: translateY(0);
}

.error-message {
  color: var(--border-error);
  font-size: 14px;
  margin-top: 5px;
  display: none;
  line-height: 1.4;
}

.form-input.error,
.form-textarea.error {
  border-color: var(--border-error) !important;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1) !important;
}

.loading {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-white);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.testimonials {
  padding: 120px 0;
  background: var(--dark-green);
  background-image: url("../images/jpg/bg-testimonials.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 767.98px) {
  .testimonials {
    padding: 80px 0;
  }
}
.testimonials__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 767.98px) {
  .testimonials__header {
    margin-bottom: 60px;
  }
}
.testimonials__title {
  color: var(--green-surface);
  margin-bottom: 20px;
}
.testimonials__subtitle {
  color: var(--text-white);
  max-width: 600px;
  margin: 0 auto;
}
.testimonials__slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.testimonials__navigation {
  position: absolute;
  bottom: 24px;
  left: 0px;
  display: flex;
  gap: 20px;
  z-index: 10;
}
@media (max-width: 1024px) {
  .testimonials__navigation {
    left: 20px;
  }
}
@media (max-width: 767.98px) {
  .testimonials__navigation {
    position: relative;
    bottom: auto;
    left: auto;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
.testimonials__learn-more {
  position: absolute;
  bottom: 6px;
  right: 0;
  z-index: 10;
}
@media (max-width: 767.98px) {
  .testimonials__learn-more {
    position: relative;
    bottom: auto;
    text-align: center;
  }
}

.testimonials-swiper {
  overflow: hidden;
  padding-bottom: 120px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .testimonials-swiper {
    padding-bottom: 20px;
  }
}
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
  width: 100%;
}
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  width: auto;
  flex-shrink: 0;
}

.testimonials-prev,
.testimonials-next {
  width: 30px;
  height: 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  opacity: 1 !important;
}
.testimonials-prev svg,
.testimonials-next svg {
  transition: var(--transition);
}
.testimonials-prev:hover svg path,
.testimonials-next:hover svg path {
  stroke-opacity: 1;
}
.testimonials-prev::after,
.testimonials-next::after {
  display: none;
}

.testimonials-prev {
  left: 0;
}
@media (max-width: 767.98px) {
  .testimonials-prev {
    position: static;
  }
}
.testimonials-prev svg path {
  stroke-opacity: 0.3;
}
.testimonials-prev.swiper-button-disabled svg path {
  stroke-opacity: 0.15;
}

.testimonials-next {
  right: auto;
  left: 60px;
}
@media (max-width: 767.98px) {
  .testimonials-next {
    position: static;
  }
}
.testimonials-next svg path {
  stroke-opacity: 1;
}
.testimonials-next.swiper-button-disabled svg path {
  stroke-opacity: 0.3;
}

.testimonial-card {
  border-radius: 30px;
  background: var(--bg-dark-secondary);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}
@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 30px;
  }
}
.testimonial__text {
  color: var(--bg-beige);
  line-height: 1.6;
  margin-bottom: 40px;
  flex-grow: 1;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .testimonial__text {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.testimonial__author {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.testimonial__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.testimonial__name {
  font-family: var(--font-heading);
  color: var(--green-primary);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 6px;
}
@media (max-width: 767.98px) {
  .testimonial__name {
    font-size: 18px;
  }
}
.testimonial__position {
  color: var(--text-gray-light);
  line-height: 1.3;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .testimonial__position {
    font-size: 14px;
  }
}

.footer {
  background-color: var(--bg-footer);
  color: var(--text-white);
  padding: 80px 0px;
}
@media (max-width: 767.98px) {
  .footer {
    padding: 40px 0 30px;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .footer__content {
    gap: 30px;
  }
}
.footer__logo {
  margin-bottom: 0;
}
.footer__logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.footer__logo-link:hover {
  opacity: 0.8;
}
.footer__logo-img {
  height: 36px;
  width: auto;
}
@media (max-width: 767.98px) {
  .footer__logo-img {
    height: 32px;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767.98px) {
  .footer__nav-list {
    gap: 20px;
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer__nav-list {
    gap: 30px;
  }
}
.footer__nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  transition: var(--transition);
  position: relative;
}
.footer__nav-link:hover {
  color: var(--green-light);
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-light);
  transition: width 0.3s ease;
}
.footer__nav-link:hover::after {
  width: 100%;
}
.footer__copyright {
  border-top: 1px solid var(--border-footer);
  padding-top: 30px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .footer__copyright {
    padding-top: 20px;
  }
}
.footer__copyright-text {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}/*# sourceMappingURL=styles.css.map */



.start-chatting{
  color: var(--green-light);
  display: block;
}

@media (max-width: 767.98px) {
  .start-chatting {
    /*display: none;*/
  }
}