

body {
  margin: 0;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
}

.est-main {
  background: #fff;
}

.est-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

.est-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 0 30px;
}

.est-breadcrumbs a {
  font-size: 16px;
  color: #767676;
  text-decoration: none;
  transition: color 0.2s;
}

.est-breadcrumbs a:hover { color: #48924E; }

.est-breadcrumbs-sep {
  font-size: 16px;
  color: #767676;
  margin: 0 8px;
}

.est-breadcrumbs-current {
  font-size: 16px;
  color: #000;
}

.est-hero {
  background: #F4F4F4;
  border-radius: 4px;
  padding: 22px 130px;
  box-sizing: border-box;
}

.est-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.est-hero-left {
  flex: 1;
  max-width: 700px;
}

.est-hero-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  color: #000;
  margin: 0 0 16px;
}

.est-hero-title-green {
  color: #48924E;
}

.est-hero-subtitle {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin: 0 0 24px;
}

.est-hero-subtitle strong {
  font-weight: 700;
}

.est-hero-subtitle-reg {
  font-weight: 400;
}

.est-benefits {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.est-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 130px;
  text-align: center;
}

.est-benefit-icon {
  width: 49px;
  height: 49px;
  object-fit: contain;
}

.est-benefit-text {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  text-align: center;
}

.est-benefit-or {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  text-align: center;
  align-self: center;
  padding-top: 20px;
}

.est-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.est-form-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.est-phone-input {
  width: 245px;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #fff;
  box-shadow: 0px 4px 4px 0px #fff inset,
              0px -4px 4px 0px rgba(0,0,0,0.25) inset;
  padding: 0 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #333;
  outline: none;
  box-sizing: border-box;
  flex-shrink: 0;
}

.est-phone-input::placeholder { color: #AAAAAA; }

.est-phone-input:focus {
  box-shadow: 0 0 0 2px #48924E,
              0px 4px 4px 0px #fff inset,
              0px -4px 4px 0px rgba(0,0,0,0.25) inset;
}

.est-attach-btn {
  width: 178px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #48924E;
  background: rgba(72, 146, 78, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  box-sizing: border-box;
}

.est-attach-btn:hover {
  background: rgba(72, 146, 78, 0.22);
}

.est-attach-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #48924E;
}

.est-attach-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.est-file-input {
  display: none;
}

.est-attach-btn.attached {
  background: rgba(72, 146, 78, 0.13);
  border-color: #48924E;
}

.est-submit-btn {
  width: 433px;
  max-width: 100%;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #EA8F13;
  box-shadow: 0px -4px 11px 0px rgba(0,0,0,0.3) inset,
              0px 6px 8px 0px rgba(255,255,255,0.35) inset;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.est-submit-btn:hover { background: #FFA326; }

.est-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.est-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #48924E;
  cursor: pointer;
  flex-shrink: 0;
}

.est-consent span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 13px;
  color: #5B5B5B;
}

.est-hero-right {
  flex: 0 0 413px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.est-mobile-photo {
  display: none;
  padding-top: 16px;
}

.est-expert-photo {
  width: 413px;
  height: 350px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.est-expert-quote {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 22px;
  color: #747474;
  text-align: center;
  margin: 0;
}

.est-audit {
  background: #fff;
  padding: 40px 0 48px;
}

.est-audit-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

.est-audit-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
  color: #000;
  margin: 0 0 24px;
}

.est-audit-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.est-audit-card {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 16px;
  box-sizing: border-box;
  min-height: 404px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.est-audit-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  pointer-events: none;
}

.est-audit-caption {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
}

.est-audit-caption--bottom {
  align-self: flex-end;
  margin-top: auto;
  width: 485px;
  max-width: 100%;
}

.est-audit-caption--top {
  align-self: flex-start;
  margin-bottom: auto;
  width: 513px;
  max-width: 100%;
}

.est-audit-card:nth-child(2) {
  justify-content: flex-start;
}

.est-audit-caption p {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin: 0;
}

.est-audit-caption span {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}

.est-not-accept {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 63px;
  padding: 10px 16px;
  border: 1px solid #C02020;
  background: #FDEDED;
  box-sizing: border-box;
}

.est-not-accept-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.est-not-accept span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 22px;
  color: #C32D2D;
}

@media (max-width: 1150px) {
  .est-hero {
    padding: 22px 60px;
  }

  .est-hero-title {
    font-size: 28px;
    line-height: 36px;
  }

  .est-hero-right {
    flex: 0 0 340px;
  }

  .est-expert-photo {
    width: 340px;
    height: 290px;
  }

  .est-submit-btn {
    width: 100%;
    max-width: 433px;
  }
}

@media (max-width: 950px) {
  .est-hero {
    padding: 22px 32px;
  }

  .est-hero-title {
    font-size: 24px;
    line-height: 32px;
  }

  .est-hero-right {
    flex: 0 0 280px;
  }

  .est-expert-photo {
    width: 280px;
    height: 240px;
    border-radius: 20px;
  }

  .est-expert-quote {
    font-size: 15px;
    line-height: 20px;
  }

  .est-form,
  .est-form-row,
  .est-phone-input,
  .est-attach-btn,
  .est-submit-btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .est-form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .est-audit-caption--bottom {
    width: 100%;
  }

  .est-audit-caption--top {
    width: 100%;
  }

  .est-not-accept span {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .est-hero {
    padding: 24px 16px;
    border-radius: 0;
  }

  .est-hero-inner {
    flex-direction: column;
    gap: 24px;
  }

  .est-hero-left {
    order: 1;
    width: 100%;
  }

  .est-hero-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 12px;
  }

  .est-hero-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }

  .est-hero-right {
    display: none;
  }

  .est-mobile-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .est-expert-photo {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    object-position: center top;
  }

  .est-expert-quote {
    font-size: 14px;
    line-height: 18px;
  }

  .est-benefits {
    order: 3;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    margin-top: 8px;
  }

  .est-form {
    order: 4;
  }

  .est-form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .est-phone-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .est-attach-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .est-submit-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 17px;
    height: 50px;
  }

  .est-form {
    width: 100%;
    box-sizing: border-box;
  }

  .est-form-row {
    width: 100%;
    box-sizing: border-box;
  }

  .est-consent {
    justify-content: flex-start;
  }

  .est-audit {
    padding: 28px 0 36px;
  }

  .est-audit-title {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
  }

  .est-audit-cards {
    flex-direction: column;
    gap: 12px;
  }

  .est-audit-card {
    min-height: 360px;
  }

  .est-audit-caption--bottom {
    width: 100%;
  }

  .est-audit-caption--top {
    width: 100%;
  }

  .est-audit-caption p,
  .est-audit-caption span {
    font-size: 15px;
    line-height: 21px;
  }

  .est-not-accept {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .est-not-accept span {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .est-hero-title {
    font-size: 20px;
    line-height: 27px;
  }

  .est-hero-subtitle {
    font-size: 13px;
  }

  .est-expert-photo {
    height: 220px;
  }

  .est-benefit-text {
    font-size: 13px;
  }

  .est-submit-btn {
    font-size: 15px;
  }

  .est-audit-title {
    font-size: 22px;
    line-height: 30px;
  }

  .est-audit-card {
    min-height: 280px;
  }

  .est-audit-caption p,
  .est-audit-caption span {
    font-size: 13px;
    line-height: 19px;
  }

  .est-not-accept span {
    font-size: 13px;
  }

  .est-not-accept-icon {
    width: 16px;
    height: 16px;
  }
}

.est-check {
  background: #FAFAFA;
  padding: 66px 130px;
  box-sizing: border-box;
}

.est-check-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.est-check-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
  color: #000;
  margin: 0 0 40px;
}

.est-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.est-check-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.est-check-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.est-check-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.est-check-item-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #000;
}

.est-check-item-desc {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #747474;
}

.est-result {
  background: #fff;
  padding: 60px 0 64px;
}

.est-result-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.est-result-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.est-result-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
  color: #000;
  margin: 0 0 24px;
}

.est-result-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.est-result-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.est-result-check-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 1px;
}

.est-result-gray {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #818280;
}

.est-result-btn {
  width: 301px;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #EA8F13;
  box-shadow: 0px -4px 11px 0px rgba(0,0,0,0.3) inset,
              0px 6px 8px 0px rgba(255,255,255,0.35) inset;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s;
  box-sizing: border-box;
}

.est-result-btn:hover {
  background: #FFA326;
}

.est-result-right {
  flex: 0 0 545px;
}

.est-result-photo-wrap {
  position: relative;
  width: 545px;
  height: 372px;
  border-radius: 10px;
  overflow: hidden;
}

.est-result-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.est-result-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #EDFDF5;
  border: 1px solid #288C46;
  border-radius: 10px;
  padding: 10px 16px;
  box-sizing: border-box;
}

.est-result-badge span {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  line-height: 22px;
  color: #288C46;
}

@media (max-width: 1100px) {
  .est-check {
    padding: 48px 60px;
  }

  .est-check-grid {
    gap: 32px 24px;
  }

  .est-check-item-title {
    font-size: 17px;
  }

  .est-result-right {
    flex: 0 0 440px;
  }

  .est-result-photo-wrap {
    width: 440px;
    height: 300px;
  }

  .est-result-btn {
    width: 100%;
    max-width: 301px;
  }
}

@media (max-width: 900px) {
  .est-check {
    padding: 40px 32px;
  }

  .est-check-title {
    font-size: 28px;
    line-height: 36px;
  }

  .est-check-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }

  .est-check-icon {
    width: 56px;
    height: 56px;
  }

  .est-check-item-title {
    font-size: 15px;
    line-height: 20px;
  }

  .est-check-item-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .est-result-inner {
    gap: 28px;
  }

  .est-result-right {
    flex: 0 0 360px;
  }

  .est-result-photo-wrap {
    width: 360px;
    height: 260px;
  }

  .est-result-title {
    font-size: 28px;
  }

  .est-result-badge span {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .est-check {
    padding: 32px 16px;
  }

  .est-check-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 28px;
  }

  .est-check-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .est-check-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .est-check-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .est-check-item-title {
    font-size: 16px;
    line-height: 20px;
  }

  .est-check-item-desc {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
  }

  .est-result {
    padding: 32px 0 40px;
  }

  .est-result-inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .est-result-left {
    width: 100%;
    order: 1;
  }

  .est-result-right {
    flex: none;
    width: 100%;
    order: 2;
  }

  .est-result-photo-wrap {
    width: 100%;
    height: 260px;
  }

  .est-result-title {
    font-size: 24px;
    line-height: 32px;
  }

  .est-result-list {
    gap: 12px;
    margin-bottom: 24px;
  }

  .est-result-list-item {
    font-size: 15px;
    line-height: 21px;
  }

  .est-result-btn {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    height: 50px;
  }

  .est-result-badge {
    bottom: 12px;
    left: 12px;
    padding: 8px 12px;
  }

  .est-result-badge span {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 480px) {
  .est-check-title {
    font-size: 20px;
    line-height: 28px;
  }

  .est-check-icon {
    width: 40px;
    height: 40px;
  }

  .est-check-item-title {
    font-size: 15px;
  }

  .est-result-title {
    font-size: 20px;
    line-height: 28px;
  }

  .est-result-list-item {
    font-size: 14px;
    line-height: 20px;
  }

  .est-result-btn {
    font-size: 16px;
  }

  .est-result-photo-wrap {
    height: 220px;
  }

  .est-result-badge span {
    font-size: 13px;
  }
}

.est-steps {
  background: #FAFAFA;
  padding: 66px 130px;
  box-sizing: border-box;
}

.est-steps-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.est-steps-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
  color: #000;
  margin: 0 0 40px;
}

.est-steps-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  margin-bottom: 36px;
}

.est-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.est-step-num--up {
  position: relative;
  top: -20px;
}

.est-step-num--down {
  position: relative;
  top: 15px;
}

.est-step-num {
  width: 42px;
  height: 42px;
  border-radius: 40px;
  background: #E1F3E3;
  border: 1px solid #E1F3E3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  color: #288C46;
  box-sizing: border-box;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.est-step-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #000;
}

.est-step-desc {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #747474;
  max-width: 300px;
}

.est-steps-quote {
  display: inline-flex;
  align-items: center;
  border-radius: 62px;
  padding: 14px 20px;
  border: 1px solid #CD8C00;
  background: #FAF3EA;
  box-sizing: border-box;
  max-width: 644px;
}

.est-steps-quote span {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  line-height: 22px;
  color: #DF9C0A;
}

.est-cta {
  background: #fff;
  padding: 40px 0 60px;
}

.est-cta-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

.est-cta-card {
  background: #1D3A2A;
  border-radius: 20px;
  padding: 0 0 0 50px;
  min-height: 364px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.est-cta-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 50px 580px 50px 0;
  position: relative;
  z-index: 2;
}

.est-cta-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 38px;
  color: #fff;
  margin: 0 0 16px;
}

.est-cta-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  margin: 0 0 28px;
}

.est-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.est-cta-btn-orange {
  width: 230px;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #FB9811;
  box-shadow: 0px -4px 11px 0px rgba(0,0,0,0.2) inset,
              0px 2px 0px 0px #6C624B;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s;
  box-sizing: border-box;
}

.est-cta-btn-orange:hover { background: #FFA726; }

.est-cta-btn-white {
  width: 230px;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #fff;
  box-shadow: 0px -4px 11px 0px rgba(0,0,0,0.2) inset,
              0px 2px 0px 0px #4B6C5D;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #434343;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s, color 0.25s;
  box-sizing: border-box;
}

.est-cta-btn-white:hover {
  background: #f0f0f0;
}

.est-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.est-cta-num-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.est-cta-stats-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  text-align: center;
  margin: 0;
}

.est-steps-line-img {
  position: absolute;
  top: -15px;
  left: 20px;
  width: calc(100% - 40px);
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.est-cta-right {
  flex: 0 0 560px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.est-cta-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(to right, #1D3A2A, transparent);
  z-index: 1;
  pointer-events: none;
}

.est-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.est-cta-stats {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  padding: 10px 20px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 220px;
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 1100px) {
  .est-steps {
    padding: 48px 60px;
  }

  .est-steps-title {
    font-size: 28px;
    line-height: 36px;
  }

  .est-step-desc {
    max-width: 240px;
    font-size: 14px;
  }

  .est-step-title {
    font-size: 16px;
  }

  .est-steps-quote span {
    font-size: 16px;
  }

  .est-cta-card {
    padding: 0 36px;
  }

  .est-cta-title {
    font-size: 30px;
    line-height: 34px;
  }

  .est-cta-left {
    padding-right: 460px;
  }

  .est-cta-right {
    flex: 0 0 440px;
    width: 440px;
  }
}

@media (max-width: 900px) {
  .est-steps {
    padding: 40px 32px;
  }

  .est-steps-title {
    font-size: 24px;
    line-height: 32px;
  }

  .est-step-num {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .est-step-title {
    font-size: 15px;
    line-height: 20px;
  }

  .est-step-desc {
    font-size: 13px;
    line-height: 19px;
    max-width: 200px;
  }

  .est-steps-quote {
    max-width: 100%;
  }

  .est-steps-quote span {
    font-size: 15px;
  }

  .est-cta-card {
    padding: 0 28px;
    min-height: auto;
  }

  .est-cta-title {
    font-size: 26px;
    line-height: 30px;
  }

  .est-cta-desc {
    font-size: 15px;
  }

  .est-cta-btn-orange,
  .est-cta-btn-white {
    width: 200px;
    font-size: 14px;
  }

  .est-cta-left {
    padding-right: 360px;
  }

  .est-cta-right {
    flex: 0 0 340px;
    width: 340px;
  }

  .est-cta-stats {
    min-width: 220px;
    padding: 10px 16px;
  }

  .est-cta-num-img {
    height: 38px;
  }

  .est-cta-stats-text {
    font-size: 13px;
  }
}

.est-cta-stats-mobile {
  display: none;
}

@media (max-width: 768px) {

  .est-steps {
    padding: 32px 16px;
  }

  .est-steps-title {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 28px;
  }

  .est-steps-line {
    display: none;
  }

  .est-steps-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .est-step-item {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .est-step-num {
    margin-bottom: 8px;
  }

  .est-step-num--up,
  .est-step-num--down {
    position: static;
    top: 0;
  }

  .est-step-title {
    font-size: 16px;
    line-height: 20px;
  }

  .est-step-desc {
    font-size: 14px;
    line-height: 20px;
    max-width: 260px;
    text-align: center;
  }

  .est-steps-quote {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
  }

  .est-steps-quote span {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
  }

  .est-cta {
    padding: 24px 0 40px;
  }

  .est-cta-card {
    flex-direction: column;
    padding: 32px 24px;
    border-radius: 16px;
    align-items: stretch;
    min-height: auto;
    position: relative;
    overflow: hidden;
  }

  .est-cta-left {
    padding: 0 0 24px;
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .est-cta-left {
    padding: 0 0 24px;
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .est-cta-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 12px;
  }

  .est-cta-desc {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .est-cta-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .est-cta-btn-orange,
  .est-cta-btn-white {
    width: 100%;
    height: 48px;
    font-size: 15px;
  }

  .est-cta-right {
    display: none;
  }

  .est-cta-stats-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 10px;
    padding: 16px 30px;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-sizing: border-box;
    min-width: 260px;
    max-width: 320px;
    width: fit-content;
    align-self: center;
  }

  .est-cta-stats-mobile .est-cta-num-img {
    height: 44px;
    width: auto;
    object-fit: contain;
  }

  .est-cta-stats-mobile .est-cta-stats-text {
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin: 0;
  }

  .est-steps-line-img {
    display: none;
}

}

@media (max-width: 480px) {
  .est-steps-title {
    font-size: 19px;
    line-height: 26px;
  }

  .est-step-num {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .est-step-title {
    font-size: 15px;
  }

  .est-step-desc {
    font-size: 13px;
    max-width: 240px;
  }

  .est-steps-quote span {
    font-size: 13px;
  }

  .est-cta-title {
    font-size: 20px;
    line-height: 26px;
  }

  .est-cta-desc {
    font-size: 14px;
  }

  .est-cta-btn-orange,
  .est-cta-btn-white {
    font-size: 14px;
    height: 46px;
  }
}

.est-findings {
  background: #fff;
  padding: 60px 0 40px;
}

.est-findings-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.est-findings-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
  color: #000;
  text-align: center;
  margin: 0 0 40px;
}

.est-findings-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  width: 100%;
  margin-bottom: 36px;
}

.est-finding-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 200px;
  text-align: center;
}

.est-finding-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.est-finding-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #747474;
  text-align: center;
}

.est-findings-slider-wrap {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.est-findings-slider {
  width: 100%;
  overflow: hidden;
}

.est-findings-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.est-finding-slide {
  flex: 0 0 calc(50% - 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 0 4px;
  box-sizing: border-box;
}

.est-findings-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.est-findings-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #48924E;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
  box-sizing: border-box;
}

.est-findings-dot.active {
  background: #48924E;
  border-color: #48924E;
}

.est-findings-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 62px;
  padding: 14px 28px;
  border: 1px solid #CD8C00;
  background: #FAF3EA;
  box-sizing: border-box;
  max-width: 754px;
  width: 100%;
  text-align: center;
}

.est-findings-quote span {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  line-height: 22px;
  color: #DF9C0A;
  text-align: center;
}

.est-engineer {
  background: #fff;
  padding: 40px 0 60px;
}

.est-engineer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

.est-engineer-card {
  position: relative;
  background: #48924E;
  border-radius: 20px;
  min-height: 452px;
  padding: 56px 50px 72px 549px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 49px;
  overflow: hidden;
}

.est-engineer-circle {
  position: absolute;
  top: -100px;
  left: -29px;
  width: 568px;
  height: 568px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.est-engineer-circle-2 {
  width: 459px;
  height: 459px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.est-engineer-circle-3 {
  width: 351px;
  height: 351px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.est-engineer-circle-4 {
  width: 247px;
  height: 247px;
  border-radius: 50%;
  background: #52A759;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.est-engineer-photo {
  width: 207px;
  height: 207px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.est-engineer-caption {
  position: absolute;
  left: 50%;
  bottom: 39px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.est-engineer-name {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #fff;
}

.est-engineer-role {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}

.est-engineer-text {
  position: relative;
  z-index: 2;
}

.est-engineer-title {
  margin: 0 0 18px;
  font-weight: 500;
  font-size: 34px;
  line-height: 36px;
  color: #fff;
  max-width: 540px;
}

.est-engineer-desc {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  max-width: 540px;
}

.est-engineer-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 318px;
  max-width: 100%;
}

.est-engineer-phone {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #fff;
  box-shadow: 0px 4px 4px 0px #fff inset,
              0px -4px 4px 0px rgba(0,0,0,0.25) inset;
  padding: 0 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #333;
  outline: none;
  box-sizing: border-box;
}

.est-engineer-phone::placeholder { color: #AAAAAA; }

.est-engineer-phone:focus {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6),
              0px 4px 4px 0px #fff inset,
              0px -4px 4px 0px rgba(0,0,0,0.25) inset;
}

.est-engineer-btn {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #EA8F13;
  box-shadow: 0px -4px 11px 0px rgba(0,0,0,0.2) inset,
              0px 2px 0px 0px #6C624B;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s;
  box-sizing: border-box;
}

.est-engineer-btn:hover { background: #FFA326; }

.est-engineer-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.est-engineer-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.est-engineer-consent span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: #fff;
}

.est-engineer-consent a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .est-findings-grid {
    gap: 20px;
  }

  .est-finding-text {
    font-size: 14px;
  }

  .est-engineer-card {
    padding: 48px 40px 56px 480px;
    min-height: 420px;
  }

  .est-engineer-circle {
    top: -80px;
    left: -40px;
    width: 480px;
    height: 480px;
  }

  .est-engineer-circle-2 {
    width: 388px;
    height: 388px;
  }

  .est-engineer-circle-3 {
    width: 296px;
    height: 296px;
  }

  .est-engineer-circle-4 {
    width: 210px;
    height: 210px;
  }

  .est-engineer-photo {
    width: 176px;
    height: 176px;
  }

  .est-engineer-title {
    font-size: 28px;
    line-height: 32px;
  }
}

@media (max-width: 900px) {
  .est-findings-grid {
    gap: 14px;
  }

  .est-finding-icon {
    width: 56px;
    height: 56px;
  }

  .est-finding-text {
    font-size: 13px;
  }

  .est-findings-quote span {
    font-size: 15px;
  }

  .est-engineer-card {
    padding: 40px 32px 48px 380px;
    min-height: 360px;
  }

  .est-engineer-circle {
    top: -60px;
    left: -50px;
    width: 380px;
    height: 380px;
  }

  .est-engineer-circle-2 {
    width: 308px;
    height: 308px;
  }

  .est-engineer-circle-3 {
    width: 234px;
    height: 234px;
  }

  .est-engineer-circle-4 {
    width: 168px;
    height: 168px;
  }

  .est-engineer-photo {
    width: 140px;
    height: 140px;
  }

  .est-engineer-caption {
    bottom: 32px;
  }

  .est-engineer-title {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {

  .est-findings {
    padding: 40px 0 28px;
  }

  .est-findings-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 28px;
  }

  .est-findings-grid {
    display: none;
  }

  .est-findings-slider-wrap {
    display: flex;
  }

  .est-finding-slide .est-finding-icon {
    width: 56px;
    height: 56px;
  }

  .est-finding-slide .est-finding-text {
    font-size: 13px;
    line-height: 18px;
  }

  .est-findings-quote {
    padding: 12px 16px;
  }

  .est-findings-quote span {
    font-size: 14px;
    line-height: 20px;
  }

  .est-engineer {
    padding: 24px 0 40px;
  }

  .est-engineer-inner {
    padding: 0 16px;
  }

  .est-engineer-card {
    flex-direction: column;
    padding: 28px 20px 28px;
    border-radius: 16px;
    gap: 20px;
    min-height: auto;
  }

  .est-engineer-circle {
    position: relative;
    top: auto;
    left: auto;
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .est-engineer-circle-2 { width: 240px; height: 240px; }
  .est-engineer-circle-3 { width: 200px; height: 200px; }
  .est-engineer-circle-4 { width: 160px; height: 160px; }
  .est-engineer-photo { width: 132px; height: 132px; }

  .est-engineer-caption {
    bottom: -8px;
  }

  .est-engineer-text {
    margin-top: 32px;
  }

  .est-engineer-title {
    font-size: 22px;
    line-height: 28px;
  }

  .est-engineer-desc {
    font-size: 14px;
    line-height: 21px;
  }

  .est-engineer-form {
    width: 100%;
  }

  .est-engineer-consent span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .est-findings-title {
    font-size: 20px;
    line-height: 28px;
  }

  .est-finding-slide {
    flex: 0 0 calc(50% - 8px);
  }

  .est-finding-slide .est-finding-icon {
    width: 48px;
    height: 48px;
  }

  .est-finding-slide .est-finding-text {
    font-size: 12px;
    line-height: 17px;
  }

  .est-findings-quote span {
    font-size: 13px;
  }

  .est-engineer-title {
    font-size: 19px;
    line-height: 25px;
  }

  .est-engineer-btn {
    font-size: 15px;
  }
}

.est-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 16px;
  box-sizing: border-box;
}

.est-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.est-popup {
  background: #1D3A2A;
  border-radius: 10px;
  width: 100%;
  max-width: 584px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 44px 99px 36px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  scrollbar-width: none;
}

.est-popup::-webkit-scrollbar {
  display: none;
}

.est-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.2s;
}

.est-popup-close:hover {
  opacity: 0.7;
}

.est-popup-close img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.est-popup-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 38px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 12px;
  width: 100%;
}

.est-popup-subtitle {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  margin: 0 0 24px;
  width: 100%;
}

.est-popup-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.est-popup-input {
  width: 386px;
  max-width: 100%;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #284A37;
  padding: 15px 20px;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  outline: none;
  transition: box-shadow 0.2s;
}

.est-popup-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.est-popup-input:focus {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
}

.est-popup-select-wrap {
  width: 386px;
  max-width: 100%;
  position: relative;
}

.est-popup-select-btn {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #284A37;
  padding: 15px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-radius 0.2s;
}

.est-popup-select-wrap.open .est-popup-select-btn {
  border-radius: 6px 6px 0 0;
}

.est-popup-select-value {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.est-popup-select-wrap.selected .est-popup-select-value {
  color: #fff;
}

.est-popup-select-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.est-popup-select-wrap.open .est-popup-select-arrow {
  transform: rotate(180deg);
}

.est-popup-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #284A37;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  z-index: 10;
  padding: 16px 20px;
  box-sizing: border-box;
  gap: 10px;
  flex-direction: column;
}

.est-popup-select-wrap.open .est-popup-select-dropdown {
  display: flex;
}

.est-popup-select-option {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.est-popup-select-option span {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}

.est-popup-select-option.active span {
  color: #8FC282;
}

.est-popup-option-check {
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: 0;
  flex-shrink: 0;
}

.est-popup-select-option.active .est-popup-option-check {
  opacity: 1;
}

.est-popup-attach-btn {
  width: 386px;
  max-width: 100%;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
}

.est-popup-attach-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.est-popup-attach-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
}

.est-popup-attach-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.est-popup-submit {
  width: 386px;
  max-width: 100%;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #FF9C00;
  box-shadow: 0px 6px 8px 0px rgba(255,255,255,0.45) inset,
              0px -4px 11px 0px rgba(0,0,0,0.2) inset;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s;
  box-sizing: border-box;
}

.est-popup-submit:hover {
  background: #FFA726;
}

.est-popup-disclaimer {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin: 0;
  width: 100%;
}

.est-popup-disclaimer a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

.est-popup-house-wrap {
  width: 372px;
  max-width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.est-popup-house-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14%;
  background: linear-gradient(180deg, #1D3A2A 0%, rgba(29,58,42,0) 100%);
  z-index: 1;
  pointer-events: none;
}

.est-popup-house-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24%;
  background: linear-gradient(180deg, rgba(29,58,42,0) 0%, #1D3A2A 100%);
  z-index: 1;
  pointer-events: none;
}

.est-popup-house-img {
  width: 100%;
  height: 311px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 640px) {
  .est-popup {
    padding: 44px 24px 28px;
    border-radius: 16px;
    max-height: 98vh;
    overflow-y: auto;
  }

  .est-popup-title {
    font-size: 26px;
    line-height: 30px;
  }

  .est-popup-input,
  .est-popup-select-wrap,
  .est-popup-attach-btn,
  .est-popup-submit {
    width: 100%;
  }

  .est-popup-house-img {
    height: 260px;
  }
}

@media (max-width: 400px) {
  .est-popup-title {
    font-size: 22px;
    line-height: 26px;
  }

  .est-popup-submit {
    font-size: 16px;
  }
}
