:root {
  --footer-gap: 150px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #444444;
  background-color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0px 4px 22px rgba(22, 155, 98, 0.08);
  z-index: 10000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo, .footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #444444;
}

.logo-image {
  height: 80px;
  width: auto;
  display: block;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #444444;
  font-weight: 600;
  transition: color 0.3s;
}

.nav a:hover {
  color: #169B62;
}

.hero {
  padding: 60px 0;
  background: #ffffff;
  margin-top: -1px;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-left: 30px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #169B62;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-image img {
  width: 60%;
  max-width: 450px;
  height: auto;
  margin-left: 0;
}

.cta-button {
  background-color: #FF883E;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #E66D1A;
}

.features {
  padding: 60px 0;
  background: #fff;
}

.features .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: space-between;
}

.feature {
  flex: 1 1 0%;
  min-width: 0;
  background: #F9FAF9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: #169B62;
  font-size: 22px;
}

.testimonials {
  background: #F9FAF9;
  padding: 60px 0;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #169B62;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn-left {
  left: 0;
}
.slider-btn-right {
  right: 0;
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  box-sizing: border-box;
}

.testimonial {
  flex: 0 0 350px;
  min-width: 350px;
  max-width: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.testimonial p {
  font-style: italic;
  flex-grow: 1;
}

@media (max-width: 900px) {
  .features .container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature {
    flex: 1 1 100%;
    min-width: 100%;
    margin-bottom: 0;
  }

  .testimonial {
    flex: 0 0 80vw;
    min-width: 80vw;
    max-width: 80vw;
  }
  .testimonial-slider {
    max-width: 98vw;
  }
}

@media (max-width: 768px) {
  .hero-content,
  .header-container,
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav a {
    margin: 10px 0;
  }

  .footer-links {
    margin-top: 20px;
  }

  .about-grid {
    flex-direction: column;
    align-items: center;
  }
}

.faq {
  background: #F9FAF9;
  padding: 60px 0;
}

.faq > .container {
  width: 100% !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}

.faq h2,
.faq-intro {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  max-width: 100% !important;
}

.faq h2 {
  margin-bottom: 1px;
  color: #169B62;
}

.faq-intro {
  color: #444444;
  font-size: 14px;
  margin-bottom: 50px;
  margin-top: 5px;
  max-width: 600px;
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
}

.faq-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list li {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #444444;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  white-space: normal;
  overflow-wrap: break-word;
  min-width: 0;
  flex-shrink: 1;
  padding: 0;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #169B62;
}

.faq-icon {
  width: 6px;
  height: 6px;
  border-right: 2px solid #444444;
  border-bottom: 2px solid #444444;
  display: inline-block;
  transform: rotate(-45deg);
  transition: transform 0.3s, border-color 0.3s;
  margin-left: 10px;
  flex-shrink: 0;
}

.faq-question:hover .faq-icon {
  border-color: #169B62;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 10px;
  font-size: 16px;
  color: #444444;
  line-height: 1.5;
}

.cta-final {
  background: #F3FDF3;
  text-align: center;
  padding: 60px 20px;
}

.page-content {
  margin-bottom: var(--footer-gap);
}


/* ====== FOOTER STYLES ====== */
.footer {
  background: #444444;   /* Updated to your requested color */
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;  /* logo text color fallback */
}

.footer-logo img {
  height: 80px;      /* Adjust height if needed */
  width: auto;
  display: block;
}

.footer-links a {
  color: #E6E6E6;
  margin-right: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:last-child {
  margin-right: 0;
}

.footer-links a:hover {
  color: #FF883E;
  text-decoration: underline;
}

.footer .legal-line {
  font-size: 12px !important;
  font-weight: 300 !important;
  color: #bbbbbb !important;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
  text-align: left !important;
  display: block;
}

/* =========================== */

.slider-btn:hover:not(:disabled) {
  background: #FF883E;
  transition: background 0.2s;
}

/* === About Section (2-column grid with checkmarks) === */
.about {
  background: #ffffff;
  padding: 60px 0;
}

.about h2 {
  font-size: 28px;
  color: #169B62;
  margin-bottom: 40px;
  text-align: center;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  flex: 1 1 500px;
  min-width: 320px;
  max-width: 600px;
}

.about-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: #444444;
}

.about-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #169B62;
  font-size: 16px;
}

.about-page p {
  margin-bottom: 2em; /* Adjust the value to your liking */
}

.nav a.active {
  color: #169B62;
  text-decoration: underline;
  font-weight: 600;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 100% высоты видимой части экрана */
}

main {
  flex: 1;
}

.terms-section {
  padding-bottom: 100px; /* или больше, если хочешь больше воздуха */
}

.pricing-section {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 0 16px;
}

.pricing-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #169B62;
  letter-spacing: 0.01em;
}

.pricing-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  flex-wrap: nowrap;
}

.plan-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(22, 155, 98, 0.08), 0 2px 8px rgba(44, 44, 44, 0.05);
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 22px 16px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  border: 2px solid #e4e8ed;
  overflow: visible;
  margin-top: 22px;
}

.plan-card:hover {
  box-shadow: 0 8px 32px rgba(22, 155, 98, 0.22), 0 6px 18px rgba(44, 44, 44, 0.09);
  transform: translateY(-4px) scale(1.038);
  z-index: 2;
}



.plan-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #169B62;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  text-align: center;
  margin-top: 0;
}

.plan-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FF883E;
  margin: 10px 0 2px 0;
  letter-spacing: 0.01em;
  text-align: center;
}

.plan-price-per {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 2px;
  text-align: center;
}

.plan-savings {
  font-size: 0.98rem;
  font-weight: 600;
  text-align: center;
  color: #888;
  min-height: 18px;
  margin-bottom: 10px;
}

.plan-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  width: 100%;
  text-align: left;
}

.plan-benefits li {
  font-size: 0.97rem;
  color: #169B62;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.plan-benefits li::before {
  content: "✔";
  font-size: 1rem;
  color: #169B62;
  margin-right: 6px;
}

.plan-button {
  display: block;
  margin-top: auto;
  background-color: #FF883E;
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
  max-width: 180px;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  box-sizing: border-box;
}


.plan-button:hover {
  background-color: #e66f27;
}

a.plan-button {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  max-width: 180px;
}

@media (max-width: 1150px) {
  .pricing-section {
    max-width: 980px;
  }
  .plan-card {
    width: 17vw;
    min-width: 140px;
    max-width: 190px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .pricing-row {
    gap: 12px;
  }
}

@media (max-width: 950px) {
  .pricing-section {
    max-width: 98vw;
  }
  .plan-card {
    width: 18vw;
    min-width: 124px;
    max-width: 155px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .plan-title { font-size: 1.04rem; }
  .plan-price { font-size: 1.07rem; }
}

@media (max-width: 720px) {
  .pricing-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .plan-card {
    width: 95vw;
    max-width: 350px;
    min-width: 0;
  }
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #444444;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #169B62;
  font-weight: bold;
}

.buy-button {
  background-color: #FF883E;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 40px;
}

.buy-button:hover {
  background-color: #e66f27;
}





