/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #18251f; background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { margin: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: scale(0.96) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* ===== UTILITIES ===== */
.text-green { color: #97f47b; }
.text-white { color: #fff; }
.text-dark { color: #18251f; }
.required { color: #e74c3c; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 20px;
  border-radius: 10px;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: all 150ms;
  text-decoration: none;
  width: fit-content;
}
.btn:active { transform: scale(0.98); }
.btn--green { background: #97f47b; color: #18251f; }
.btn--green:hover { background: #85e268; }
.btn--dark { background: #18251f; color: #fff; }
.btn--dark:hover { background: #2a3d32; }
.btn--white { background: #fff; color: #18251f; }
.btn--white:hover { background: #f3f1ed; }
.btn--outline { background: #fff; color: #18251f; border: 1px solid #e5e2dc; }
.btn--outline:hover { background: #f3f1ed; }
.btn--outline-light { background: #fff; color: rgba(24,37,31,0.8); border: 1px solid rgba(25,10,28,0.12); padding: 13px 17px; height: auto; border-radius: 12px; }
.btn--outline-light:hover { background: #f3f1ed; }
.btn--dark-border { background: #18251f; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.btn--dark-border:hover { background: #2a3d32; }
.btn--submit { width: 100%; height: 50px; margin-top: 8px; }
.btn--submit:disabled { opacity: 0.4; cursor: not-allowed; }
.btn--submit:disabled:hover { background: #97f47b; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  /* border-bottom: 1px solid rgba(229,226,220,0.6); */
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 15px;
  max-width: 1440px;
  margin: 0 auto;
}
.header__left { display: flex; align-items: center; gap: 15px; }
.header__logo { display: flex; align-items: center; gap: 11px; color: #18251f; height: 37px; align-items: flex-start;}
.logo-icon { width: 13px; height: 28px; }
.logo-text { width: 120px; height: 16px; }
.header__nav { display: flex; gap: 10px; align-items: center; }
.nav-link {
  padding: 4px 10px; border-radius: 10px;
  font-weight: 600; font-size: 14px; color: #18251f;
  transition: background-color 150ms;
}
.nav-link:hover { background: #f3f1ed; }
.header__actions { display: flex; gap: 10px; align-items: center; }
.btn--demo-header { height: 56px; }

/* ===== HERO ===== */
.hero { position: relative; width: 100%; overflow: hidden; }
.hero__bg {position: absolute;inset: 0;width: 100%;height: 100%;object-fit: cover;z-index: -1;}
.hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.24); }
.hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 600ms ease-out;
  height: 820px;
}
.hero--visible { opacity: 1; transform: translateY(0); }
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  padding: 180px 0 60px 0;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}
.hero__title { font-weight: 500; font-size: 55px; letter-spacing: -0.32px; line-height: 1; }
.hero__subtitle {font-weight: 600;font-size: 20px;/* color: #fff; */letter-spacing: -0.5px;line-height: 30px;}
.hero__cta-wrap { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.hero__cta-bar {
  background: #97f47b;
  display: flex;
  gap: 30px;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 17px 16px 17px 20px;
  min-width: calc(100% + 80px);
  justify-content: space-between;
}
.cta-bar__price { display: flex; gap: 20px; align-items: center; flex-shrink: 0; }
.price-wrapper { display: flex; gap: 5px; align-items: center; flex-shrink: 0; }

.price-big { font-weight: 500; font-size: 35px; line-height: 1; color: #18251f; }
.price-unit { font-weight: 500; font-size: 22.5px; letter-spacing: -0.7px; color: #18251f; }
.price-big--white { color: #fff; font-size: 36px; }
.price-unit--white { color: #fff; font-size: 23px; }
.price-checks { display: flex; flex-direction: column; }
.check-item { display: flex; align-items: center; gap: 6px; }
.check-item--dark span { font-size: 12px; color: #18251f; }
.check-item--white span { font-size: 12px; color: rgba(255,255,255,0.7); }
.cta-bar__buttons { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.hero__engagement {font-size: 14px;opacity: 0.8;line-height: 20px;/* color: #fff; */}
.hero__mockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  align-self: stretch;
  width: 740px;
  z-index: -1;
  height: 100%;
  padding: 90px 0 60px 90px;
  overflow: hidden;
  border-radius: 30px;
}
.hero__mockup-img {
  width: 115%;
  padding-top: 0;
  border-radius: 12px 0 0 0;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  object-fit: cover;
  object-position: top;
  max-width: unset;
}

/* ===== SECTION SHARED ===== */
.section-label { font-weight: 600; font-size: 14px; color: #18251f; }
.section-title { font-weight: 500; font-size: 45px; letter-spacing: -1.1px; }

/* ===== WHY CHOOSE ===== */
.why-choose {
  background: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: 60px;
  position: relative;
  z-index: 10;
  width: 100%;
}
.why-choose__inner {
  padding: 60px 90px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.card-grid { display: grid; gap: 30px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-why { display: flex; flex-direction: column; gap: 32px; }
.card-why__img { border-radius: 30px; overflow: hidden; }
.card-why__img img { width: 100%; height: auto; object-fit: cover; }
.card-why__title { font-weight: 600; font-size: 20px; color: #18251f; line-height: 26px; margin-bottom: 10px; }
.card-why__desc { font-weight: 600; font-size: 16px; color: rgba(24,37,31,0.6); line-height: 22px; margin-bottom: 20px; }

/* ===== FEATURES ===== */
.features { background: #fff; width: 100%;}
.features__inner {padding: 60px 15px;max-width: 1440px;margin: 0 auto;}
.features__header {margin-bottom: 60px;}
.features__header .section-title {letter-spacing: -0.9px;line-height: 1.1;max-width: 720px;}
.features__cards { display: flex; flex-direction: column; gap: 30px; }
.feature-card {
  background: #18251f;
  border-radius: 24px;
  padding: 80px;
  display: flex;
  gap: 60px;
  align-items: stretch;
  position: sticky;
  top: 130px;
}
.feature-card__text { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; }
.feature-card__label { font-weight: 600; font-size: 25px; color: #97f47b; letter-spacing: -0.5px; margin-bottom: 32px; }
.feature-card__list { font-weight: 600; font-size: 20px; color: #fff; letter-spacing: -0.5px; line-height: 32.5px; margin-bottom: 40px; }
.feature-card__list p { margin: 0; }
.feature-card__img {
  flex: 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 24px; aspect-ratio: 1/1;
}
.feature-card__img img { width: 100%; height: 100%; object-fit: contain; }

/* ===== STEPS ===== */
.steps { width: 100%; }
.steps__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 90px;
  gap: 50px;
  max-width: 1440px;
  margin: 0 auto;
}
.steps__header { text-align: center; }
.steps__header .section-title { letter-spacing: -0.9px; }
.card-step { display: flex; flex-direction: column; gap: 32px; }
.card-step__img { border-radius: 30px; overflow: hidden; }
.card-step__img img { width: 100%; height: auto; object-fit: cover; }
.card-step__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.card-step__title { font-weight: 600; font-size: 20px; color: #190a1c; line-height: 26px; }
.card-step__time { font-weight: 600; font-size: 14px; color: #ff8665; line-height: 20px; }
.card-step__desc { font-weight: 600; font-size: 16px; color: rgba(25,10,28,0.6); line-height: 22px; }

/* ===== PRICING ===== */
.pricing { width: 100%; padding: 60px; }
.pricing__card { background: #97f47b; border-radius: 24px; overflow: hidden; max-width: 1440px; margin: 0 auto; }
.pricing__inner { display: flex; align-items: stretch; padding: 120px 120px 0; }
.pricing__text { flex: 1; display: flex; flex-direction: column; gap: 90px; padding-bottom: 120px;}
.pricing__top { display: flex; flex-direction: column; gap: 30px; }
.pricing__label { font-weight: 600; font-size: 25px; color: #18251f; letter-spacing: -0.5px; }
.pricing__price-block { display: flex; flex-direction: column; gap: 10px; }
.pricing__price { font-weight: 500; color: #18251f; }
.pricing__amount { font-size: 75px; line-height: 1; }
.pricing__currency { font-size: 48px; letter-spacing: -1.5px; }
.pricing__tagline { font-weight: 600; font-size: 25px; color: #18251f; letter-spacing: -0.5px; line-height: 32.5px; }
.pricing__engagement-note { font-size: 14px; color: #1b5f35; }
.pricing__bottom { display: flex; flex-direction: column; gap: 30px; }
.pricing__features { display: flex; flex-direction: column; gap: 5px; }
.pricing__features .check-item span { font-size: 14px; }
.pricing__image {
  flex: 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden; aspect-ratio: 1/1;
  padding: 0 0 0 60px;
}
.pricing__image img { width: 100%; height: 100%; object-fit: contain; }

/* ===== FAQ ===== */
.faq-section { background: #18251f; width: 100%; }
.faq-wrap {
  background: #fff; border-radius: 0 0 50px 50px;
  padding: 60px 120px 120px;
}
.faq__inner { max-width: 1296px; margin: 0 auto; display: flex; flex-direction: column; gap: 60px; }
.faq__header .section-title { letter-spacing: -0.9px; }
.faq__list { display: flex; flex-direction: column; }
.faq-item { overflow: hidden; }
.faq-item + .faq-item { border-top: 1px solid #e5e2dc; }
.faq-item__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; text-align: left; background: none; border: none; cursor: pointer;
}
.faq-item__btn:focus { outline: none; }
.faq-item__btn span { font-weight: 600; font-size: 18px; color: #18251f; }
.faq-chevron { width: 32px; height: 32px; transition: transform 200ms; flex-shrink: 0; }
.faq-item__btn[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-item__answer {
  max-height: 0; overflow: hidden; transition: max-height 200ms, padding-bottom 200ms;
  padding-bottom: 0;
}
.faq-item__answer p { font-size: 16px; color: #5c7066; line-height: 24px; padding-bottom: 30px;}

/* ===== FOOTER ===== */
.footer { background: #18251f; width: 100%; }
.footer__inner {
  display: flex; flex-direction: column; gap: 30px; align-items: flex-start;
  padding: 80px 160px 60px;
}
.footer-cta { display: flex; flex-direction: column; align-items: center; width: 100%; text-align: center; gap: 30px; }
.footer-cta__title { font-weight: 500; font-size: 55px; letter-spacing: -1.1px; line-height: 1.1; }
.footer-cta__bar {
  background: rgba(255,255,255,0.1);
  display: flex; gap: 30px; align-items: center;
  padding: 17px 25px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-bar__price--footer { display: flex; gap: 16px; align-items: center; }
.footer__logo-wrap { display: flex; align-items: center; justify-content: center; width: 100%; }
.footer__logo-icon { width: 56px; height: 120px; color: #fff; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding-top: 40px;
}
.footer__copyright { font-size: 16px; color: #e5dfe9; }
.footer__links { display: flex; gap: 10px; }
.footer__links a { font-size: 16px; color: #e5dfe9; transition: color 150ms; }
.footer__links a:hover { color: #fff; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  animation: fadeIn 200ms ease-out;
}
.modal {
  position: relative; background: #fff; border-radius: 20px;
  width: 100%; max-width: 520px; margin: 0 16px;
  padding: 40px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  animation: modalIn 200ms ease-out;
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background-color 150ms;
}
.modal__close:hover { background: #f3f1ed; }
.modal__title { font-weight: 600; font-size: 22px; color: #18251f; margin-bottom: 4px; }
.modal__subtitle { font-size: 14px; color: #5c7066; margin-bottom: 24px; }
.modal__form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.form-row > .form-field { flex: 1; }
.form-field label {
  display: block; font-weight: 500; font-size: 14px; color: #18251f; margin-bottom: 6px;
}
.form-field input {
  width: 100%; height: 44px; padding: 0 14px; border-radius: 10px;
  border: 1px solid #e5e2dc; background: #fff;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #18251f;
  transition: border-color 150ms;
}
.form-field input::placeholder { color: #b0a99f; }
.form-field input:focus { outline: none; border-color: #1b5f35; box-shadow: 0 0 0 1px #1b5f35; }
.gdpr-label {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer; margin-top: 4px;
}
.gdpr-label input[type="checkbox"] {
  margin-top: 2px; width: 18px; height: 18px; border-radius: 4px;
  accent-color: #1b5f35; cursor: pointer; flex-shrink: 0;
}
.gdpr-label span { font-size: 13px; color: #5c7066; line-height: 18px; }
.modal__success { text-align: center; padding: 32px 0; animation: fadeIn 200ms ease-out; }
.modal__success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: #97f47b;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal__success-title { font-weight: 600; font-size: 22px; color: #18251f; margin-bottom: 8px; }
.modal__success-text { font-size: 16px; color: #5c7066; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .header__nav { display: none; }
}

@media (max-width: 1024px) {
  .header__inner { padding: 20px; }
  .hero__inner { padding: 30px 16px 0; flex-direction: column; height: auto; }
  .hero__content { padding: 20px 0 40px; }
  .hero__title { font-size: 32px; }
  .hero__subtitle { font-size: 18px; }
  .hero__mockup { order: -1;height: 360px;margin-bottom: 30px;width:100%}
  .hero__cta-bar { flex-wrap: wrap; min-width: auto; width: 100%; }
  .cta-bar__buttons { flex-direction: column; width: 100%; }
  .cta-bar__buttons .btn { width: 100%; }
  .btn {font-size: 14px;padding: 0 15px;}
  .why-choose__inner { padding: 40px 16px; }
  .card-grid--3 { grid-template-columns: 1fr; }

  .features__inner { padding: 40px 16px; }
  .feature-card { padding: 30px; flex-direction: column; }

  .steps__inner { padding: 40px 16px; }

  .pricing { padding: 40px 16px; }
  .pricing__inner { padding: 40px; flex-direction: column; }

  .faq-wrap { padding: 40px 16px 80px; }

  .footer__inner { padding: 50px 16px 40px; }
  .footer-cta__title { font-size: 28px; }
  .footer-cta__bar { flex-direction: column; width: 100%; padding: 16px; }
  .cta-bar__buttons { flex-direction: column; width: 100%; }
  .cta-bar__buttons .btn { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: center; gap: 12px; }
  .footer__copyright { text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .footer__logo-icon { width: 40px; height: 86px; }

  .section-title { font-size: 35px; }

  .btn--demo-header { display: none; }
  .feature-card {position: relative;}
}

@media (max-width: 640px) {
  .form-row { flex-direction: column; }
  .modal { padding: 24px; }
}
