/*
 * landing-main.css
 * Стили новой главной страницы (hero, преимущества, документы, направления, цены, преимущества компании, промо, FAQ, доверие и т.п.).
 * Основано на блоке "LANDING PAGE STYLES" и "LANDING PAGE — BUGFIXES" из style.css.
 * При дальнейших доработках главной правим здесь, а затем при желании чистим дубли в style.css.
 */

/* =============================================
   LANDING PAGE STYLES
   ============================================= */

/* --- Hero Banner --- */
.landing-hero {
  position: relative;
  background: linear-gradient(135deg, #4bae50 0%, #2e7d32 60%, #1b5e20 100%);
  padding: 70px 0 80px;
  overflow: hidden;
  margin: 0 -15px 30px -15px;
  border-radius: 0;
}

.landing-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.landing-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
}

.landing-hero__title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.landing-hero__subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}

.landing-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.landing-hero__btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.landing-hero__btn--primary {
  background: #fff;
  color: #2e7d32;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.landing-hero__btn--primary:hover {
  background: #f1f8e9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: #2e7d32;
  text-decoration: none;
}

.landing-hero__btn--outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}

.landing-hero__btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.landing-hero__icon {
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Section Title --- */
.landing-section__title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  padding-left: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.landing-section__line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  min-height: 24px;
  background: linear-gradient(180deg, #4bae50, #2e7d32);
  border-radius: 3px;
}

/* --- Benefits Section --- */
.landing-benefits {
  margin: 0 0 10px;
}

.landing-benefits__card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 1px solid #e8f5e9;
  height: 100%;
}

.landing-benefits__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(75,174,80,0.15);
  border-color: #c8e6c9;
}

.landing-benefits__icon {
  margin-bottom: 16px;
}

.landing-benefits__icon svg {
  display: inline-block;
}

.landing-benefits__title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.landing-benefits__text {
  font-size: 14px;
  color: #666;
  margin-bottom: 14px;
  line-height: 1.5;
}

.landing-benefits__link {
  display: inline-block;
  color: #4bae50;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.landing-benefits__link:hover {
  border-bottom-color: #4bae50;
  color: #2e7d32;
  text-decoration: none;
}

/* --- Specialized Services Section --- */
.landing-specialized {
  margin: 24px 0 30px;
  padding: 0 0 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.landing-specialized .landing-section__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.landing-specialized-cards {
  margin-bottom: 32px;
}

.landing-specialized-cards .col-12 {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 16px;
}

.landing-specialized-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8f5e9;
  height: 100%;
  transition: all 0.3s ease;
}

.landing-specialized-card:hover {
  box-shadow: 0 8px 28px rgba(75,174,80,0.12);
  border-color: #a5d6a7;
}

.landing-specialized-card__title {
  font-size: 17px;
  font-weight: 600;
  color: #1b5e20;
  margin-bottom: 14px;
  line-height: 1.4;
}

.landing-specialized-card__list {
  margin: 0;
  padding-left: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #455a64;
  list-style: none;
}

.landing-specialized-card__list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
}

.landing-specialized-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4bae50;
}

.landing-specialized-card__list li:last-child {
  margin-bottom: 0;
}

.landing-specialized-blocks {
  max-width: 900px;
}

.landing-specialized-block {
  margin-bottom: 28px;
}

.landing-specialized-block:last-child {
  margin-bottom: 0;
}

.landing-specialized-more {
  max-height: 3000px;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.landing-specialized-more--collapsed {
  max-height: 0;
  margin-bottom: 0;
}

.landing-specialized-more--collapsed .landing-specialized-block {
  margin-bottom: 0;
}

.landing-specialized-more-toggle-wrap {
  margin-top: 20px;
}

.landing-specialized-more-toggle {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2e7d32;
  background: #fff;
  border: 2px solid #4bae50;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.landing-specialized-more-toggle:hover {
  background: #4bae50;
  color: #fff;
  border-color: #4bae50;
}

.landing-specialized-block__title {
  font-size: 20px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.landing-specialized-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #37474f;
  margin-bottom: 14px;
}

.landing-specialized-block p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .landing-specialized-cards .col-12 {
    margin-bottom: 14px;
  }
  .landing-specialized-card {
    padding: 20px 18px;
  }
}

@media (max-width: 767px) {
  .landing-specialized {
    margin: 18px 0 24px;
    padding: 0 0 16px;
  }
  .landing-specialized .landing-section__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .landing-specialized-cards {
    margin-bottom: 24px;
  }
  .landing-specialized-card__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .landing-specialized-card__list {
    font-size: 14px;
  }
  .landing-specialized-block__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .landing-specialized-block p {
    font-size: 15px;
  }
  .landing-specialized-block {
    margin-bottom: 22px;
  }
}

/* --- Documents Section --- */
.landing-docs {
  margin: 30px 0;
  padding: 40px 0 10px;
}

.landing-docs__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin-bottom: 0;
  border: 1px solid #e8f5e9;
  text-decoration: none;
  color: #4bae50;
  height: 100%;
  width: 100%;
  align-items: flex-start;
}

.landing-docs__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(75,174,80,0.18);
  border-color: #4bae50;
  text-decoration: none;
  color: #2e7d32;
}

.landing-docs__icon {
  margin-bottom: 16px;
  color: #4bae50;
  transition: color 0.3s;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 48px;
}

.landing-docs__card:hover .landing-docs__icon {
  color: #2e7d32;
}

.landing-docs__icon svg {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
}

.landing-docs__name {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
  margin-top: 0;
  flex-shrink: 0;
}

.landing-docs__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 14px;
}

.landing-docs__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #4bae50;
  transition: color 0.3s;
  margin-top: auto;
  flex-shrink: 0;
}

.landing-docs__card:hover .landing-docs__link {
  color: #2e7d32;
}

/* --- Directions Section --- */
.landing-directions {
  margin: 10px 0 30px;
  padding: 40px 30px;
  background: #f5faf5;
  border-radius: 16px;
}

.landing-directions__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  text-decoration: none;
  border: 1px solid transparent;
  height: calc(100% - 20px);
}

.landing-directions__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(75,174,80,0.15);
  border-color: #c8e6c9;
  text-decoration: none;
}

.landing-directions__icon {
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-directions__icon svg {
  display: block;
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
}

.landing-directions__icon--img {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  flex-shrink: 0;
}

.landing-directions__img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
}

.landing-directions__name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.35;
  margin: 0;
}

.landing-directions__card:hover .landing-directions__name {
  color: #2e7d32;
}

.landing-directions__all-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #4bae50, #2e7d32);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(75,174,80,0.3);
}

.landing-directions__all-btn:hover {
  background: linear-gradient(135deg, #43a047, #1b5e20);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(75,174,80,0.4);
  color: #fff;
  text-decoration: none;
}

/* --- Price Section --- */
.landing-price-section {
  margin: 60px 0 80px;
  padding: 56px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.landing-price-section .landing-section__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.landing-price-section__subtitle {
  margin-top: 56px !important;
  margin-bottom: 36px !important;
}

.landing-price-table-wrapper {
  overflow-x: auto;
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin-left: -4px;
  margin-right: -4px;
}

.landing-price-section .landing-price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 16px;
}

.landing-price-section .landing-price-table th {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;
  padding: 18px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.landing-price-section .landing-price-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #e8f5e9;
  font-size: 16px;
  color: #263238;
  line-height: 1.5;
}

.landing-price-section .landing-price-table tbody tr:nth-child(even) {
  background: #f8fdf9;
}

.landing-price-section .landing-price-table tbody tr:hover {
  background: #e8f5e9;
}

.landing-price-section .landing-price-table td:nth-child(2) {
  font-weight: 600;
  color: #2e7d32;
  font-size: 16px;
}

.landing-price-section .landing-price-table td:nth-child(3) {
  color: #546e7a;
  font-size: 15px;
}

.landing-price-note {
  font-size: 14px;
  color: #78909c;
  margin-bottom: 40px;
  font-style: italic;
  line-height: 1.6;
  padding-left: 4px;
}

.landing-price-text {
  margin-bottom: 48px;
  max-width: 800px;
}

.landing-price-text p {
  font-size: 17px;
  line-height: 1.85;
  color: #37474f;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.landing-price-text p:last-child {
  margin-bottom: 0;
}

/* --- Highlight Cards --- */
.landing-highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.landing-highlight-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e8f5e9;
  transition: all 0.3s ease;
}

.landing-highlight-card:hover {
  box-shadow: 0 12px 40px rgba(75,174,80,0.12);
  border-color: #a5d6a7;
}

.landing-highlight-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #1b5e20;
  margin-bottom: 18px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.landing-highlight-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #455a64;
  margin-bottom: 16px;
}

.landing-highlight-card p:last-of-type {
  margin-bottom: 0;
}

.landing-highlight-card__list {
  margin: 16px 0 0;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #455a64;
  list-style: none;
}

.landing-highlight-card__list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  display: list-item;
}

.landing-highlight-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4bae50;
}

.landing-highlight-card__list li:last-child {
  margin-bottom: 0;
}

/* --- Team Block --- */
.landing-team-block {
  background: linear-gradient(145deg, #f1f8e9 0%, #e8f5e9 50%, #c8e6c9 100%);
  border-radius: 20px;
  padding: 48px 44px;
  border: 1px solid #a5d6a7;
  position: relative;
  overflow: hidden;
  margin-top: 36px;
}

.landing-team-block::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.landing-team-overlay {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 3px solid rgba(46,125,50,0.25);
}

.landing-team-overlay h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.landing-team-overlay p {
  font-size: 16px;
  color: #455a64;
  margin: 0;
  line-height: 1.6;
}

.landing-team-text {
  font-size: 17px;
  line-height: 1.9;
  color: #37474f;
  margin: 0;
  letter-spacing: 0.01em;
}

/* --- Advantages Section --- */
.landing-advantages-section {
  margin: 4px 0 6px;
  padding: 6px 0 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.landing-advantages-section .landing-section__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.landing-advantages-intro {
  font-size: 17px;
  line-height: 1.8;
  color: #37474f;
  margin-bottom: 12px;
  max-width: 800px;
}

.landing-advantages-list {
  margin: 0 0 16px;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #455a64;
  list-style: none;
}

.landing-advantages-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
}

.landing-advantages-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4bae50;
}

.landing-advantages-list li:last-child {
  margin-bottom: 0;
}

.landing-advantages-list strong {
  color: #1b5e20;
  font-weight: 600;
}

.landing-advantages-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.landing-advantages-conclusion {
  max-width: 800px;
}

.landing-advantages-conclusion p {
  font-size: 17px;
  line-height: 1.85;
  color: #37474f;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.landing-advantages-conclusion p:last-child {
  margin-bottom: 0;
}

.landing-advantages-slogan {
  font-weight: 600;
  color: #2e7d32;
  font-size: 18px;
  margin-top: 10px !important;
}

@media (max-width: 767px) {
  .landing-price-section {
    margin: 40px 0 50px;
    padding: 36px 0;
  }
  .landing-price-section .landing-price-table th,
  .landing-price-section .landing-price-table td {
    padding: 14px 16px;
    font-size: 14px;
  }
  .landing-price-text p {
    font-size: 16px;
    line-height: 1.8;
  }
  .landing-highlight-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .landing-highlight-card {
    padding: 28px 24px;
  }
  .landing-team-block {
    padding: 36px 24px;
  }
  .landing-advantages-section {
    margin: 3px 0 5px;
    padding: 5px 0 7px;
  }
  .landing-advantages-section .landing-section__title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .landing-advantages-intro {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .landing-advantages-list {
    padding-left: 20px;
    font-size: 15px;
    margin-bottom: 14px;
  }
  .landing-advantages-subtitle {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .landing-advantages-conclusion p {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .landing-advantages-slogan {
    font-size: 17px;
    margin-top: 8px !important;
  }
}

/* --- Promo Block --- */
.landing-promo {
  margin: 30px 0;
}

.landing-promo__inner {
  background: linear-gradient(135deg, #333 0%, #1b5e20 100%);
  border-radius: 16px;
  padding: 40px 36px;
  overflow: hidden;
  position: relative;
}

.landing-promo__inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(75,174,80,0.2);
}

.landing-promo__title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.landing-promo__text {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}

.landing-promo__note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

.landing-promo__btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #2e7d32;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.landing-promo__btn:hover {
  background: #f1f8e9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: #2e7d32;
  text-decoration: none;
}

/* --- FAQ Section --- */
.landing-faq {
  margin: 40px 0 30px;
  padding: 40px 0 10px;
}

.landing-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-faq__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #e8f5e9;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.landing-faq__item:hover {
  box-shadow: 0 4px 20px rgba(75,174,80,0.1);
}

.landing-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}

.landing-faq__question:hover {
  color: #4bae50;
}

.landing-faq__arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #4bae50;
}

.landing-faq__item--open .landing-faq__arrow {
  transform: rotate(180deg);
}

.landing-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.landing-faq__item--open .landing-faq__answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.landing-faq__answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 10px;
}

.landing-faq__answer ul {
  margin: 12px 0 14px;
  padding-left: 0;
  list-style: none;
}

.landing-faq__answer ul li {
  position: relative;
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 8px;
  padding-left: 20px;
  display: list-item;
}

.landing-faq__answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4bae50;
}

.landing-faq__answer ul li:last-child {
  margin-bottom: 0;
}

/* --- Trust Section --- */
.landing-trust {
  margin: 20px 0 8px;
  padding: 50px 30px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9, #fff);
  border-radius: 16px;
  text-align: center;
}

.landing-trust__item {
  padding: 20px 10px;
}

.landing-trust__number {
  font-size: 48px;
  font-weight: 800;
  color: #2e7d32;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.landing-trust__label {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
  .landing-hero {
    padding: 50px 0 60px;
    margin: 0 -10px 0;
  }
  .landing-hero__title {
    font-size: 30px;
  }
  .landing-directions {
    padding: 30px 20px;
  }
}

@media (max-width: 991px) {
  .landing-hero__title {
    font-size: 26px;
  }
  .landing-hero__subtitle {
    font-size: 16px;
  }
  .landing-section__title {
    font-size: 22px;
  }
  .landing-promo__title {
    font-size: 24px;
  }
  .landing-promo__inner {
    padding: 30px 24px;
  }
  .landing-trust__number {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .landing-hero {
    padding: 40px 15px 50px;
    margin: 0 -5px 0;
  }
  .landing-hero__title {
    font-size: 24px;
    text-align: center;
  }
  .landing-hero__subtitle {
    font-size: 15px;
    text-align: center;
    max-width: none;
  }
  .landing-hero__buttons {
    justify-content: center;
  }
  .landing-hero__btn {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
    max-width: 280px;
  }
  .landing-section__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .landing-benefits__card {
    padding: 22px 18px;
  }
  .landing-docs__card {
    padding: 22px 20px;
  }
  .landing-directions {
    padding: 25px 15px;
    margin: 10px -5px 20px;
  }
  .landing-directions__card {
    padding: 22px 16px;
  }
  .landing-promo__inner {
    padding: 28px 20px;
    text-align: center;
  }
  .landing-promo__title {
    font-size: 22px;
  }
  .landing-promo__text {
    font-size: 16px;
  }
  .landing-promo__btn {
    margin-top: 20px;
  }
  .landing-faq__question {
    padding: 16px 18px;
    font-size: 15px;
  }
  .landing-faq__answer {
    padding: 0 18px;
  }
  .landing-faq__item--open .landing-faq__answer {
    padding: 0 18px 16px;
  }
  .landing-trust {
    padding: 35px 15px;
  }
  .landing-trust__number {
    font-size: 36px;
  }
  .landing-trust__label {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .landing-hero {
    padding: 30px 10px 40px;
    margin: 0;
  }
  .landing-hero__title {
    font-size: 21px;
  }
  .landing-hero__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .landing-hero__btn {
    padding: 11px 20px;
    font-size: 14px;
  }
  .landing-benefits {
    margin: 20px 0 10px;
  }
  .landing-benefits__card {
    padding: 20px 16px;
    margin-bottom: 12px;
  }
  .landing-docs {
    padding: 20px 0 0;
    margin: 20px 0;
  }
  .landing-docs__card {
    padding: 20px 16px;
    margin-bottom: 16px;
  }
  .landing-docs__name {
    font-size: 16px;
  }
  .landing-docs__desc {
    font-size: 13px;
  }
  .landing-directions {
    padding: 20px 10px;
    border-radius: 12px;
  }
  .landing-directions__card {
    padding: 20px 14px;
    margin-bottom: 12px;
  }
  .landing-directions__name {
    font-size: 14px;
  }
  .landing-directions__all-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  .landing-faq {
    margin: 25px 0 20px;
    padding: 25px 0 0;
  }
  .landing-faq__question {
    padding: 14px 14px;
    font-size: 14px;
  }
  .landing-trust {
    padding: 25px 10px;
    margin: 15px 0 6px;
  }
  .landing-trust__number {
    font-size: 32px;
  }
  .landing-promo__title {
    font-size: 20px;
  }
  .landing-promo__text {
    font-size: 15px;
  }
}

/* =============================================
   LANDING PAGE — BUGFIXES
   ============================================= */

/* FIX 1: Убираем отступ между hero и main контентом */
body.home .home-content,
body.page-template-front-page .home-content {
  margin-top: 0 !important;
}

/* Типографика главной — читаемость */
.home-content {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
}

.home-content .landing-section__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.02em;
}

.home-content .right__content,
.home-content .text-page {
  font-size: 16px;
  line-height: 1.75;
  color: #37474f;
}

.home-content .right__content p,
.home-content .text-page p {
  margin-bottom: 1.25em;
}

/* FIX 2: text-align justify — сбрасываем на left для карточек */
.landing-docs__desc,
.landing-docs__name,
.landing-docs__link,
.landing-benefits__title,
.landing-benefits__text,
.landing-directions__name,
.landing-faq__question,
.landing-faq__answer p,
.landing-faq__answer ul li,
.landing-promo__title,
.landing-promo__text,
.landing-promo__note,
.landing-trust__label,
.landing-section__title {
  text-align: left;
}

.landing-trust__number,
.landing-trust__label {
  text-align: center;
}

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

/* FIX 3: Карточки документов — одинаковая высота через flex и равномерные отступы */
.landing-docs .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  align-items: stretch;
}

.landing-docs .row > [class*="col-"] {
  display: flex;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 24px;
  align-items: stretch;
}

.landing-docs__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 260px;
  width: 100%;
  margin-bottom: 0;
  align-items: flex-start;
}

.landing-docs__desc {
  flex-grow: 1;
}

/* FIX 4: Направления — одинаковая высота и равномерные отступы */
.landing-directions .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.landing-directions .row > [class*="col-"] {
  display: flex;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}

.landing-directions__card {
  height: 100%;
  min-height: 180px;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
}

/* FIX 5: Кнопки hero — усиление стилей через специфичность */
.landing-hero .landing-hero__btn.landing-hero__btn--primary {
  background: #fff;
  color: #2e7d32;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border: none;
}

.landing-hero .landing-hero__btn.landing-hero__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}

/* FIX 7: Преимущества — выровнять по высоте и одинаковые отступы */
.landing-benefits .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.landing-benefits .row > [class*="col-"] {
  display: flex;
  padding-left: 15px;
  padding-right: 15px;
}

.landing-benefits__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

.landing-benefits__text {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing-benefits__link {
  margin-top: auto;
}

/* FIX 8: Hero баннер — добавить отступ снизу */
.landing-hero + .home-content {
  margin-top: 0;
}

/* FIX 9: Подстраховка — зелёная полоска заголовков секций не justify */
.landing-section__line {
  flex-shrink: 0;
}

/* FIX 13: Подзаголовок в hero — убрать justify */
.landing-hero__subtitle {
  text-align: left !important;
}

/* FIX 14: Hero кнопки — усиление визуальной заметности */
.landing-hero__btn--primary {
  background: #fff !important;
  color: #2e7d32 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
  font-weight: 700;
}

.landing-hero__btn--outline {
  border: 2px solid #fff !important;
  color: #fff !important;
  font-weight: 700;
}

