:root {
  --green: #2E7D4F;
  --green-dark: #256B43;
  --green-light: #E8F4EE;
  --blue: #1F3A5F;
  --text: #1A1A1A;
  --muted: #6B7280;
  --border: #E0E5E3;
  --soft: #F5F7F6;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--green);
}

.hero {
  padding: 72px 0 56px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #F3F8F5 100%);
}

.hero h1 span,
.green {
  color: var(--green);
}

.lead {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.65;
}

.badge-custom {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.nav-actions .btn {
  white-space: nowrap;
}

/* Вход (вторичная кнопка) */
.btn-login {
  border: 1px solid #E0E5E3;
  background: #fff;
  color: #1A1A1A;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

/* hover */
.btn-login:hover {
  border-color: #2E7D4F;
  color: #2E7D4F;
  background: #F7FBF9;
}

/* активное состояние */
.btn-login:active {
  transform: translateY(1px);
}

/* фокус */
.btn-login:focus-visible {
  outline: 2px solid rgba(46, 125, 79, 0.3);
  outline-offset: 2px;
}

.btn-primary-custom {
  background: var(--green);
  border: 1px solid var(--green);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 22px;
}

.btn-primary-custom:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.btn-outline-custom {
  background: #fff;
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 22px;
}

.btn-outline-custom:hover {
  background: var(--green);
  color: #fff;
}

.cta-banner-section {
  padding: 48px 0;
}

.cta-banner {
  position: relative;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(90deg, #1F7A46 0%, #2E7D4F 58%, rgba(46, 125, 79, 0.15) 100%);
  display: flex;
  align-items: center;
  padding: 42px 48px;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 620px;
}

.cta-banner-content h2 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 28px;
}

.cta-banner-points {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.cta-banner-button {
  position: relative;
  z-index: 3;
  margin-left: auto;
  margin-right: 260px;

  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  min-width: 220px;
  min-height: 78px;
  padding: 18px 54px 18px 24px;

  background: #fff;
  color: #1A1A1A;
  text-decoration: none;

  border: 1px solid rgba(46, 125, 79, 0.16);
  border-radius: 12px;

  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);

  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta-banner-button-title {
  font-size: 1rem;
  line-height: 1.2;
}

.cta-banner-button-subtitle {
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6B7280;
}

.cta-banner-button-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #2E7D4F;
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.cta-banner-button:hover {
  color: #1A1A1A;
  border-color: #2E7D4F;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.cta-banner-button:hover .cta-banner-button-arrow {
  transform: translate(5px, -50%);
}

.cta-banner-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.cta-banner-button:focus-visible {
  outline: 3px solid rgba(46, 125, 79, 0.25);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .cta-banner-button {
    margin: 24px 0 0;
    width: 100%;
    max-width: 320px;
  }
}

.cta-banner-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  max-width: 34%;
  object-fit: cover;
  z-index: 1;
}

@media (max-width: 991px) {
  .cta-banner {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }


  .cta-banner-img {
    opacity: 0.25;
    max-width: 100%;
    width: 100%;
  }
}

.hero-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #333;
}

.hero-point i {
  font-size: 28px;
  color: #2E7D4F;
  background: #E8F4EE;
  padding: 12px;
  border-radius: 12px;
}

.hero-point:hover i {
  background: #2E7D4F;
  color: #fff;
  transition: 0.2s;
}

.hero-points {
  font-size: 0.88rem;
  color: #333;
}

.highlight-card {
  background: #E8F4EE;
  border: 1px solid #2E7D4F;
}

.highlight-card h5 {
  color: #2E7D4F;
  font-weight: 800;
}

.highlight-card p {
  color: #2E7D4F;
}

.icon-box {
  width: 52px;
  height: 52px;
  background: #E8F4EE;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.icon-box img {
  width: 48px;
  height: 48px;
}

.integration-card {
  height: 100%;
  min-height: 190px;
  background: linear-gradient(135deg, #E8F4EE 0%, #DFF1E7 100%);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(46, 125, 79, 0.08);
}

.integration-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(46, 125, 79, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.integration-icon img {
  width: 22px;
  height: 22px;
}

.integration-text {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
  color: #1A1A1A;
}

.integration-icon {
  color: #2E7D4F;
  font-size: 24px;
  font-weight: 900;
}

/* hover эффект */
.hero-point:hover .icon-box {
  background: #2E7D4F;
}

.dashboard-frame {
/*  background: #111;*/
  border-radius: 20px;
  padding: 18px;
  /*box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);*/
}

.dashboard-frame img {
  border-radius: 10px;
  background: #fff;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(90deg, #F7FBF9 0%, #FFFFFF 100%);
}

.icon-card {
  padding: 20px 12px;
}

.icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border: 2px solid var(--green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 800;
}

.icon-card p {
  margin: 0;
  font-weight: 500;
}

.result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.metric {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}

.metric strong {
  display: block;
  color: var(--green);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.metric span {
  color: #333;
  font-size: 0.95rem;
}

.link-custom {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.benefit {
  height: 100%;
  padding: 24px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  font-weight: 500;
}

.saas-block {
  padding-top: 20px;
}

.saas-card {
  background: #F7FBF9;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #E3EFE8;
}

.saas-label {
  font-size: 0.8rem;
  color: #2E7D4F;
  font-weight: 700;
  text-transform: uppercase;
}

.saas-list {
  list-style: none;
  padding: 0;
}

.saas-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.saas-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2E7D4F;
  font-weight: 700;
}

.saas-img {
  max-height: 220px;
}

.saas-mini {
  background: #E8F4EE;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.saas-mini-icon {
  font-size: 20px;
  color: #2E7D4F;
}

.saas-mini strong {
  display: block;
  font-size: 0.95rem;
}

.saas-mini p {
  font-size: 0.85rem;
  color: #333;
}
.step-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.step-number {
  width: 42px;
  height: 42px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h5 {
  font-weight: 800;
}

.step-card p {
  color: var(--muted);
}

.badge-soft {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.faq-section {
  background: #F7FBF9;
}

.faq-card {
  background: #fff;
  border: 1px solid #E3EFE8;
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: 0.2s;
  height: 100%;
}

.faq-card:hover {
  border-color: #2E7D4F;
  box-shadow: 0 8px 20px rgba(46, 125, 79, 0.08);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-icon {
  font-size: 20px;
  color: #2E7D4F;
  transition: 0.2s;
}

.faq-body {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
  display: none;
}

.faq-card.active .faq-body {
  display: block;
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}


.seo-text {
  background: #fff;
}

.seo-text p {
  max-width: 900px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  background: #F7FBF9;
  border-top: 1px solid #E0E5E3;
  padding: 48px 0 24px;
  color: #6B7280;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  line-height: 1.5;
  color: #6B7280;
}

.footer-col h6 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #6B7280;
  text-decoration: none;
  margin-bottom: 9px;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #2E7D4F;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #E8F4EE;
  color: #2E7D4F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0;
}

.footer-socials a:hover {
  background: #2E7D4F;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #E0E5E3;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.86rem;
}

.footer-bottom a {
  color: #6B7280;
  text-decoration: none;
  margin-left: 20px;
}

.footer-bottom a:hover {
  color: #2E7D4F;
}

@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 16px;
  }
}

@media (max-width: 575px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 48px 0;
    background: #fff;
  }

  .dashboard-frame {
    padding: 10px;
    border-radius: 14px;
  }

}