/* Plus Jakarta Sans */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");
@import url("../vendor/intl-tel-input/css/intlTelInput.min.css");

/* crypto-traders — teal / slate (not the original blue) */
:root {
  --accent-color: #0d9488;
  --accent-hover: #0f766e;
  --accent-muted: rgba(13, 148, 136, 0.14);
  --text-color: #1e293b;
  --text-muted: #475569;
  --page-background: #fafaf9;
  --footer-bg: #134e4a;
  --footer-text: #ecfdf5;
  --footer-link: #99f6e4;
  --footer-dim: #94a3b8;
  --container: min(1140px, 92vw);
  --radius-btn: 9999px;
  --shadow-soft: 0 14px 44px rgba(13, 148, 136, 0.15);
  --focus-ring: rgba(13, 148, 136, 0.25);
  --timer-from: #0d9488;
  --timer-to: #059669;
  --surface-alt: #ecfeff;
  --surface-muted: #f1f5f9;
  --cta-from: #ccfbf1;
  --cta-to: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-color);
  background: var(--page-background);
  padding-top: 120px;
  transition: padding-top 0.58s cubic-bezier(0.33, 1, 0.68, 1);
}

body.header-is-collapsed {
  padding-top: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .header,
  .header__sheet,
  body {
    transition-duration: 0.05s !important;
    transition-timing-function: linear !important;
  }

  .header.header--collapsed .header__sheet {
    filter: none !important;
  }

  .footer {
    transition-duration: 0.05s !important;
  }

  .footer.footer--scroll-hidden {
    opacity: 1;
    transform: none !important;
    box-shadow: none;
  }

  body.nav-is-open::after {
    animation: none;
    opacity: 1;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Header shell stays transform-free so position:fixed descendants (.wrap-nav) use the viewport */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
}

.header__sheet {
  background: #fff;
  box-shadow: 0 1px 0 rgba(6, 33, 48, 0.06);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition:
    transform 0.58s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.48s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.45s ease,
    filter 0.5s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.header.header--collapsed .header__sheet {
  transform: translate3d(0, calc(-100% - 8px), 0);
  opacity: 0;
  pointer-events: none;
  box-shadow: none;
  filter: blur(1px);
}

.header:not(.header--collapsed) .header__sheet {
  filter: blur(0);
}

.header__top-text {
  text-align: center;
  font-size: 13px;
  padding: 6px 12px;
  background: var(--surface-muted);
  color: var(--text-muted);
}

.header__timer {
  text-align: center;
  background: linear-gradient(90deg, var(--timer-from) 0%, var(--timer-to) 100%);
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
}

.header__timer strong span {
  font-weight: 800;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  min-height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-color);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo span {
  color: var(--accent-color);
}

.wrap-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
}

.nav {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--accent-color);
  text-decoration: none;
}

.wrap-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.menu-bottom-mob {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 12px;
}

.menu-bottom-mob a {
  font-size: 14px;
  color: var(--text-muted);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.lang-switch a {
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--text-color);
}

.lang-switch a.is-active {
  background: var(--accent-muted);
  color: var(--accent-color);
}

.lang-switch .sep {
  color: #cfd8e0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  background: var(--accent-color);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  background: var(--accent-hover);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text-color);
}

.nav-close {
  display: none;
}

.btn-show-form {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--accent-color);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-show-form svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.sec__top h1,
.sec__top h2,
.sec__top h3 {
  margin: 0 0 20px;
  line-height: 1.2;
}

.sec__top h1 {
  font-size: clamp(28px, 4vw, 42px);
}

.sec__top h2 {
  font-size: clamp(24px, 3.2vw, 38px);
}

.sec__top h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

.section-title {
  padding: 20px 0 40px;
  text-align: center;
}

.section-title h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 12px;
}

.section-title p {
  margin: 0;
  font-size: 19px;
  color: var(--text-muted);
}

.section-block {
  padding: 60px 0;
}

.section-block.alt {
  background: var(--surface-alt);
}

.seo__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.seo__wrapper.only-text {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seo__wrapper.swap .seo__text {
  order: 2;
}

.seo__wrapper.swap .seo__image {
  order: 1;
}

.seo__text p {
  margin: 0 0 16px;
}

.seo__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(6, 33, 48, 0.06);
  border: 1px solid rgba(6, 33, 48, 0.06);
}

.card-item h4 {
  margin: 0 0 12px;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.card-item .card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.card-item p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
}

.cta-strip {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--cta-from) 0%, var(--cta-to) 100%);
  border-radius: 16px;
  margin: 40px auto;
  max-width: 900px;
}

.cta-strip p {
  margin: 0 0 20px;
  font-size: 19px;
}

.hero__wrapper {
  padding: 40px 0 60px;
}

.hero-unified {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, min(420px, 100%));
  gap: 0;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(6, 33, 48, 0.08);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 22px 48px rgba(13, 148, 136, 0.08);
  overflow: hidden;
}

.hero-unified__visual {
  background: linear-gradient(155deg, #ecfdf5 0%, #f0fdfa 42%, #f8fafc 100%);
  padding: 28px 28px 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.hero-unified__visual .hero__image {
  width: 100%;
  max-width: 100%;
}

.hero-unified__visual .hero__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow:
    0 12px 32px rgba(13, 148, 136, 0.14),
    0 2px 8px rgba(15, 23, 42, 0.06);
}

.hero-unified__form.form-panel {
  align-self: stretch;
  padding: 36px 36px 40px;
  border-left: 1px solid rgba(6, 33, 48, 0.07);
  background: #fff;
}

.hero__form.form-panel {
  align-self: stretch;
}

.hero__image img {
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.form-panel h2 {
  margin: 0 0 20px;
  font-size: 22px;
}

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

.form-grid input:not([type="checkbox"]):not([type="radio"]):not([type="tel"]) {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d5dee6;
  font-family: inherit;
  font-size: 15px;
}

.form-grid input:not([type="checkbox"]):not([type="radio"]):not([type="tel"]):focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-grid input[type="checkbox"],
.form-grid input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  accent-color: var(--accent-color);
  align-self: flex-start;
  margin-top: 3px;
}

.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d5dee6;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid textarea:focus,
.form-grid select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-grid .btn {
  width: 100%;
  margin-top: 8px;
}

.checkbox-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-row span {
  flex: 1 1 auto;
  min-width: 0;
}

.checkbox-row input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* intl-tel-input — высота/ширина как у остальных полей (14px padding по вертикали) */
.form-grid .ct-intl-tel.iti {
  display: flex;
  width: 100%;
  align-items: stretch;
  box-sizing: border-box;
  vertical-align: top;
  --iti-input-padding: 14px;
  --iti-border-width: 1px;
}

.form-grid .iti input.iti__tel-input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  min-height: 50px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.35;
  border: 1px solid #d5dee6;
  border-left: 0;
  border-radius: 0 10px 10px 0;
}

.form-grid .iti input.iti__tel-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

/* Country list above modal chrome; when inside .modal, avoid clipping parent overflow */
.modal .iti__country-list {
  z-index: 30 !important;
}

/* Dropdown attached to body (page forms) */
.iti__country-list {
  z-index: 4500 !important;
}

.form-grid .ct-intl-tel .iti__country-container {
  border: 1px solid #d5dee6;
  border-right: 0;
  border-radius: 10px 0 0 10px;
}

.form-grid .ct-intl-tel .iti__selected-country {
  min-height: 50px;
  box-sizing: border-box;
}

.modal .form-grid .iti input.iti__tel-input {
  border-radius: 0 10px 10px 0;
}

.modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.52);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-wrap.is-open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: none;
  overflow: visible;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: #f0f4f8;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal__body {
  padding: 32px 28px 28px;
  max-height: min(85vh, 640px);
  overflow-x: visible;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 40px 0 80px;
}

.lead-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(6, 33, 48, 0.08);
}

.lead-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

.lead-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.lead-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.contact-layout,
.contact .contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 0 80px;
  align-items: start;
}

.contact__columns {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.contact__column--title {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact__column--descr {
  color: var(--text-muted);
}

.contact__form--title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 40px;
  font-size: 15px;
  transition:
    transform 0.58s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.45s ease,
    box-shadow 0.45s ease;
  will-change: transform;
}

.footer.footer--scroll-hidden {
  transform: translate3d(0, 12px, 0);
  opacity: 0.88;
  box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.18);
}

.footer a {
  color: var(--footer-link);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.footer__menus {
  display: contents;
}

.seo__wrapper.two_column {
  max-width: 920px;
  margin: 0 auto;
}

.seo__text-wrap {
  display: grid;
  gap: 24px;
}

.sec__btn.btn--center {
  display: table;
  margin: 28px auto 0;
}

.footer .logo {
  color: #fff;
}

.footer__small-text p {
  margin: 12px 0 0;
  line-height: 1.6;
  color: var(--footer-dim);
}

.footer__col--title {
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(236, 253, 245, 0.85);
}

.footer__text {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.footer__text p {
  margin: 0 0 14px;
  color: rgba(148, 163, 184, 0.95);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  #title.section-title {
    padding: 16px 16px 20px;
  }

  #hero-top.section-block {
    padding-top: 0;
  }

  #hero-top .hero__wrapper {
    padding-top: 8px;
    padding-bottom: 44px;
  }

  .hero-unified {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .hero-unified__form.form-panel {
    border-left: none;
    border-top: 1px solid rgba(6, 33, 48, 0.07);
    padding: 28px 24px 32px;
  }

  .hero-unified__visual {
    padding: 24px 20px 20px;
  }

  .seo__wrapper {
    grid-template-columns: 1fr;
  }

  .seo__wrapper.swap .seo__text,
  .seo__wrapper.swap .seo__image {
    order: unset;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout,
  .contact .contact__wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Full header ≈ advertorial + timer + bar — 72px was far too small and overlapped content */
  body {
    padding-top: 168px;
  }

  body.header-is-collapsed {
    padding-top: 18px;
  }

  /*
    Menu drawer uses position:fixed — must not live inside a transformed ancestor.
    Collapse animation moved to .header__sheet; .header itself stays transform-free.
  */
  body.nav-is-open {
    overflow: hidden;
  }

  body.nav-is-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(15, 23, 42, 0.48);
    pointer-events: auto;
    animation: ctBackdropFade 0.28s ease forwards;
  }

  @keyframes ctBackdropFade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .header__timer {
    font-size: 12px;
    padding: 8px;
  }

  .burger {
    display: flex;
    z-index: 3;
    position: relative;
    flex-shrink: 0;
  }

  /* Burger sat above the drawer (z-index) and blocked all taps — hide it while open */
  .burger.is-open {
    visibility: hidden;
    pointer-events: none;
  }

  .burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .burger span {
    transition:
      transform 0.28s ease,
      opacity 0.2s ease;
    transform-origin: center;
  }

  .wrap-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    left: auto;
    width: min(320px, 88vw);
    flex: none !important;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: max(12px, env(safe-area-inset-top)) 24px max(20px, env(safe-area-inset-bottom));
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transition: right 0.36s cubic-bezier(0.33, 1, 0.68, 1);
    z-index: 1200;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wrap-nav.is-open {
    right: 0;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
  }

  .wrap-nav .nav-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 44px;
    height: 44px;
    margin: 0 0 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text-color);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
  }

  .nav-close:active {
    transform: scale(0.96);
  }

  .wrap-nav .nav-actions {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e8eef3;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
  }

  .menu-bottom-mob {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    border-top: 1px solid #e8eef3;
    margin-top: 12px;
    flex-shrink: 0;
    gap: 4px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .btn-show-form {
    bottom: 16px;
    right: 16px;
  }

  /* Home hero: lift block, full-bleed dashboard, tighter fusion with signup form */
  #title.section-title {
    padding: 8px 16px 12px;
  }

  #title.section-title h1 {
    font-size: clamp(22px, 5.6vw, 30px);
    margin: 0 0 8px;
    line-height: 1.22;
  }

  #title.section-title p {
    font-size: 16px;
    line-height: 1.45;
  }

  #hero-top.section-block {
    padding-top: 0;
    padding-bottom: 32px;
  }

  #hero-top .container {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    width: 100%;
  }

  #hero-top .hero__wrapper {
    padding: 0 0 16px;
  }

  #hero-top .hero-unified {
    border-radius: 0 0 16px 16px;
    border-left: none;
    border-right: none;
    max-width: none;
    margin: 0;
    box-shadow:
      0 20px 44px rgba(13, 148, 136, 0.12),
      0 2px 12px rgba(15, 23, 42, 0.06);
    overflow: hidden;
  }

  #hero-top .hero-unified__visual {
    padding: 0;
    background: linear-gradient(180deg, #e0f7f4 0%, #ecfdf5 35%, #f8fafc 100%);
  }

  #hero-top .hero-unified__visual .hero__image {
    margin: 0;
  }

  #hero-top .hero-unified__visual .hero__image img {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: none;
  }

  #hero-top .hero-unified__form.form-panel {
    padding: 20px 18px 26px;
    border-top: none;
    background: linear-gradient(180deg, #fafdfd 0%, #fff 45%);
    box-shadow: inset 0 1px 0 rgba(13, 148, 136, 0.2);
  }

  #hero-top .hero-unified__form .modal__title {
    margin-bottom: 14px;
  }

  #hero-top .hero-unified__form .modal__title p {
    margin: 0;
  }
}

/* Legal & report pages */
.text-section {
  padding: 24px 0 72px;
}

.text-section .content {
  max-width: 860px;
  margin: 0 auto;
}

.text-section .content h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.2;
}

.text-section .content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 32px 0 12px;
}

.text-section .content .terms-lead {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.text-section .content .terms-block-title {
  font-weight: 600;
  margin: 28px 0 12px;
  font-size: 1.05rem;
}

.text-section .content p,
.text-section .content li {
  margin: 0 0 14px;
}

.text-section .content ul,
.text-section .content ol {
  margin: 0 0 16px;
  padding-left: 1.35rem;
}

.text-section .content hr {
  border: 0;
  border-top: 1px solid #e8eef3;
  margin: 28px 0;
}

.abuse-intro {
  margin-bottom: 28px;
  line-height: 1.65;
}

.abuse-form-panel {
  max-width: 560px;
}

/* Form feedback modal (replaces alert) */
.feedback-modal.modal-wrap {
  z-index: 2100;
  backdrop-filter: blur(6px);
}

.modal--feedback {
  max-width: 420px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.modal__body--feedback {
  padding: 36px 28px 32px;
}

.feedback-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-muted), rgba(13, 148, 136, 0.08));
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.feedback-modal__icon-symbol--warn {
  display: none;
}

.feedback-modal--error .feedback-modal__icon {
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.06));
  color: #dc2626;
}

.feedback-modal--error .feedback-modal__icon-symbol--ok {
  display: none;
}

.feedback-modal--error .feedback-modal__icon-symbol--warn {
  display: block;
}

.feedback-modal__text {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-color);
}

.feedback-modal__btn {
  min-width: 160px;
  justify-content: center;
}

.modal--feedback .modal__close {
  background: rgba(241, 245, 249, 0.9);
}

.modal--feedback .modal__close:hover {
  background: #e2e8f0;
}
