:root {
  --green-main: #15b46a;
  --green-dark: #0e9857;
  --blue: #2f80ed;
  --orange: #f2994a;
  --violet: #7b61ff;
  --rose: #ff4b6a;
  --mint-1: #daf5ea;
  --mint-2: #e4f4f0;
  --text-main: #142227;
  --text-muted: #5c6c73;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-soft: 0 18px 45px rgba(13, 60, 40, 0.18);
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  color: var(--text-main);
  background: radial-gradient(
    circle at top left,
    #d7f7e5 0,
    #e4f4f0 40%,
    #f4fbf9 100%
  );
  -webkit-font-smoothing: antialiased;
}

.lp {
  min-height: 100vh;
}

.section {
  padding: 64px 16px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.section-title.center {
  text-align: center;
}

.section-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.section-text.center {
  text-align: center;
}

.section-text.narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-text.small {
  font-size: 14px;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(21, 180, 106, 0.25);
  font-size: 13px;
  font-weight: 500;
  color: var(--green-dark);
}

.chip-alt {
  border-color: rgba(47, 128, 237, 0.25);
  color: var(--blue);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.85);
}

.badge-green {
  color: var(--green-dark);
  border: 1px solid rgba(21, 180, 106, 0.35);
}

.badge-blue {
  color: var(--blue);
  border: 1px solid rgba(47, 128, 237, 0.35);
}

.badge-orange {
  color: var(--orange);
  border: 1px solid rgba(242, 153, 74, 0.35);
}

.badge-violet {
  color: var(--violet);
  border: 1px solid rgba(123, 97, 255, 0.35);
}

.glass-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(12, 76, 50, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-green {
  border-radius: 28px;
  background: radial-gradient(
    circle at top left,
    rgba(21, 180, 106, 0.14),
    rgba(255, 255, 255, 0.96)
  );
  box-shadow: 0 28px 70px rgba(15, 102, 62, 0.18);
  border: 1px solid rgba(206, 234, 221, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 120, 69, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(13, 120, 69, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  border-color: rgba(0, 0, 0, 0.25);
}

.btn-ghost:hover {
  background: #ffffff;
}

.btn-full {
  width: 100%;
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(14, 93, 57, 0.24);
}

.card-hover-inner {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(10, 80, 52, 0.24);
}

.hero {
  padding-top: 80px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  color: var(--text-main);
  font-size: 15px;
}

.hero-benefits li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green-main);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.rounded-visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rounded-visual-badge {
  position: absolute;
  top: 400px;
  left: 3px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(21, 180, 106, 0.12);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
}

.rounded-visual-card {
  position: absolute;
}

.rounded-visual-card.small {
  left: 16px;
  bottom: 20px;
  max-width: 230px;
  font-size: 13px;
}

.rounded-visual-card.small p {
  margin: 6px 0 0;
  color: var(--text-main);
}

.rounded-visual-card.tiny {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust {
  padding-top: 40px;
}

.trust-cards {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.trust-card {
  width: 100%;
  max-width: 420px;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
}

.trust-logo-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f5fbf8;
}

.trust-logo {
  width: 100%;
  height: 80px;
  object-fit: contain;
  display: block;
}

.trust-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-card-title {
  font-size: 22px;
  margin: 0 0 4px;
}

.trust-card-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.trust-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  font-size: 13px;
}

.trust-card-label {
  margin: 0 0 4px;
  color: var(--text-muted);
}

.trust-card-value {
  margin: 0;
  font-weight: 600;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.feature-card {
  padding: 20px 18px;
}

.feature-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(21, 180, 106, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-title {
  font-size: 16px;
  margin: 0 0 8px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.program-cards {
  padding-top: 56px;
  padding-bottom: 56px;
}

.program-cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.large-program-card {
  padding: 24px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.large-program-title {
  font-size: 24px;
  margin: 0 0 4px;
}

.large-program-subtitle {
  font-size: 16px;
  margin: 0 0 12px;
  color: var(--green-dark);
}

.large-program-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-main);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-main), var(--blue));
}

.feature-list.small li {
  font-size: 13px;
}

.large-program-visual {
  display: flex;
  justify-content: center;
}

.image-card {
  border-radius: var(--radius-xl);
  background: #d8f4ea;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.image-card.wide {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
}

.advantages-program {
  padding-top: 56px;
  padding-bottom: 56px;
}

.advantages-wrapper {
  padding: 28px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.adv-item {
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.adv-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(21, 180, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 20px;
}

.adv-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.adv-text {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.consult-benefits {
  padding-top: 56px;
  padding-bottom: 56px;
}

.consult-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: center;
}

.consult-image-inner {
  border-radius: var(--radius-xl);
  background: #f6fffb;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.consult-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consult-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--text-main);
}

.consult-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}

.consult-list li::before {
  content: "✔";
  position: absolute;
  left: 4px;
  top: 1px;
  font-size: 14px;
  color: var(--green-main);
}

.consult-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

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

.faq-item {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-main);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.18s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-180deg);
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.cta-final {
  padding-bottom: 80px;
}

.lead-card {
  padding: 28px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.lead-form-wrapper {
  width: 100%;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-main);
}

.field span {
  font-weight: 500;
}

.field input,
.field textarea {
  border-radius: 14px;
  border: 1px solid rgba(172, 203, 191, 0.9);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 1px rgba(21, 180, 106, 0.18);
  background: #ffffff;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

.js-fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Планшеты ≤ 760px
   =========================== */
@media (max-width: 560px) {
  .section {
    padding: 48px 16px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero-text {
    text-align: left;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
    text-align: left;
  }
  .section-title.center {
    text-align: center;
  }

  .section-text {
    font-size: 15px;
  }

  .trust-cards {
    flex-direction: column;
    align-items: stretch;
  }
  .trust-card {
    max-width: 100%;
  }
  .trust-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .large-program-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .image-card.wide {
    max-width: 100%;
  }

  .advantages-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 24px 18px;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 24px 18px;
  }
}

/* ===========================
   Мобилки ≤ 640px
   =========================== */
@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    text-align: center;
    padding: 44px 18px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(13, 60, 40, 0.18);
  }

  .hero-text {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .hero-benefits {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
  }

  /* Кнопки */
  .hero-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 0;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    text-align: center;
  }

  .hero-actions .btn-primary {
    background: #15b46a;
    color: #fff;
    border: none;
    transition: 0.3s ease;
  }

  .hero-actions .btn-primary:hover {
    background: #0e9857;
  }

  .hero-actions .btn-outline {
    border: 2px solid #15b46a;
    background: #fff;
    color: #0e9857;
    transition: 0.3s ease;
  }

  .hero-actions .btn-outline:hover {
    background: #15b46a;
    color: #fff;
  }

  .trust {
    padding: 40px 0;
  }

  .trust .container {
    padding: 0 16px;
    max-width: 100%;
  }

  .trust-logo-wrap {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 16px;
    padding: 8px 12px;
  }

  .trust-logo {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .trust-cards {
    width: 100%;
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .trust-card {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  .trust {
    text-align: center;
    padding: 40px 16px;
  }

  .trust-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
  }

  .trust-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 20px 16px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  }

  .trust-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
    margin-bottom: 12px;
  }

  .trust-logo {
    width: 60%;
    height: auto;
    object-fit: contain;
  }

  .trust-card-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .trust-card-subtitle {
    font-size: 13px;
    color: #4a4a4a;
    margin-bottom: 10px;
  }

  .trust-card-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 13px;
  }

  .trust-card-label {
    font-weight: 500;
    color: #555;
  }

  .trust-card-value {
    color: #000;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .feature-card {
    padding: 16px 14px;
  }

  .large-program-card {
    padding: 18px 16px;
  }

  .large-program-title {
    font-size: 20px;
  }

  .large-program-subtitle {
    font-size: 14px;
  }

  .feature-list li {
    font-size: 13px;
  }

  .advantages-wrapper {
    padding: 20px 14px;
  }
  .advantages-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .adv-item {
    padding: 12px 12px;
  }

  .consult-benefits {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .consult-list {
    font-size: 14px;
  }

  .faq-item {
    font-size: 15px;
    padding: 12px 14px;
  }

  .lead-card {
    padding: 20px 14px;
  }

  .field input,
  .field textarea {
    font-size: 13px;
    padding: 9px 10px;
  }

  .form-note {
    font-size: 11px;
  }

  .lead-card {
    max-width: 380px;
    margin: 0 auto;
  }

  .field input,
  .field textarea {
    width: 100%;
    font-size: 15px;
    padding: 14px 16px;
    border: 1.5px solid #c7e5d7;
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .field input:focus,
  .field textarea:focus {
    border-color: #15b46a;
    box-shadow: 0 0 0 3px rgba(21, 180, 106, 0.15);
    outline: none;
  }

  .field label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    text-align: left;
  }

  .lead-card .btn {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    border-radius: 9999px;
    background: #15b46a;
    color: #fff;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .lead-card .btn:hover {
    background: #0e9857;
  }

  .lead-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: 20px 16px;
    box-sizing: border-box;
  }

  .lead-form {
    width: 100%;
  }

  .field input,
  .field textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 14px 14px;
    border-radius: 14px;
  }
}

.field-error {
  display: none;
  font-size: 12px;
  color: #ff4b6a;
  margin-top: 4px;
}

.field-error.field-error--visible {
  display: block;
}

.popup-success {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-50px);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1000;
}

.popup-success.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.popup-success .popup-icon {
  font-size: 24px;
}

.popup-success p {
  margin: 0;
  color: #0e9857;
  font-weight: 600;
  font-size: 17px;
}

.consult-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 380px;
  width: calc(100% - 32px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(12, 94, 60, 0.28);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 1100;
}

.consult-popup.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.consult-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.consult-popup-title {
  font-size: 15px;
  font-weight: 700;
  color: #0e9857;
  margin: 0;
}

.consult-popup-text {
  font-size: 13px;
  color: #2c3e3a;
  margin: 2px 0 0;
}

.consult-popup-close {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #7b8f88;
  padding: 0 2px;
}

.consult-popup-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.consult-popup-btn-main,
.consult-popup-btn-secondary {
  flex: 1;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 10px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.consult-popup-btn-main {
  background: #15b46a;
  color: #fff;
  box-shadow: 0 8px 20px rgba(21, 180, 106, 0.3);
}

.consult-popup-btn-main:hover {
  background: #0e9857;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(21, 180, 106, 0.35);
}

.consult-popup-btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #0e9857;
  border: 1px solid rgba(21, 180, 106, 0.25);
}

.consult-popup-btn-secondary:hover {
  background: rgba(21, 180, 106, 0.06);
}

@media (max-width: 480px) {
  .consult-popup {
    right: 16px;
    left: 16px;
    width: auto;
    bottom: 16px;
  }
}
