/* V5 premium theme */
:root {
  --background: #060d1a;
  --color-dark: #060d1a;
  --primary: #3d9eff;
  --primary-dark: #152e4a;
  --primary-light: #8ec5ff;
  --secondary: #8ba4be;
  --gradient-circle: radial-gradient(50% 50% at 50% 50%, #3d9eff 0%, rgba(61, 158, 255, 0) 100%);
  --border-radius-lg: 28px;
  --border-radius-sm: 20px;
  --border-radius-xs: 14px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(61, 158, 255, 0.24);
}

.button {
  border-radius: var(--border-radius-xs);
  box-shadow: var(--shadow-glow);
}

.button:hover {
  color: var(--primary-dark);
}

.v5-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 26, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61, 158, 255, 0.2);
}

.v5-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}

.v5-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.v5-brand__icon {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(61, 158, 255, 0.35);
}

.v5-brand__name {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.v5-topnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
}

.v5-topnav a {
  color: #c8dcf0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.v5-topnav a:hover {
  color: var(--primary-light);
}

.v5-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.v5-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(61, 158, 255, 0.35);
  border-radius: 12px;
  background: rgba(61, 158, 255, 0.1);
  cursor: pointer;
}
.v5-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s;
}
.v5-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v5-burger.is-open span:nth-child(2) { opacity: 0; }
.v5-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.v5-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 120;
}
.v5-nav-overlay:not([hidden]) { display: block; }

.v5-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  z-index: 130;
  background: #101e33;
  border-left: 1px solid rgba(61, 158, 255, 0.25);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.v5-nav-drawer.is-open {
  transform: translateX(0);
}
.v5-nav-drawer:not([hidden]) { display: flex; }
.v5-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.v5-nav-drawer__title { font-size: 1rem; font-weight: 500; }
.v5-nav-drawer__close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.v5-nav-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 4px;
  overflow-y: auto;
}
.v5-nav-drawer__nav a {
  color: #d4e8fa;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
}
.v5-nav-drawer__nav a:hover {
  background: rgba(61, 158, 255, 0.15);
  color: #fff;
}

.v5-topbar__cta {
  padding: 10px 16px !important;
  font-size: 13px !important;
  white-space: nowrap;
}

.v5-hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.45);
}
.v5-hero-urgency__label {
  color: #ff4d4d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.v5-hero-urgency__count {
  color: #ff3b3b;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}

.hero {
  padding-top: 36px !important;
}

.hero + .how-to-use {
  padding-top: 56px;
  padding-bottom: 70px;
}
.hero__inner {
  grid-template-columns: 1fr 580px !important;
  column-gap: 64px !important;
}
.hero__subtitle {
  margin-bottom: 28px !important;
}

.hero__form,
.form__wrapper,
.ai__inner,
.calculator__form,
.how-to-use__item,
.advantages__item,
.v5-user-review,
.v5-info-card,
.v5-earn-banner {
  border-radius: var(--border-radius-sm) !important;
}

.hero__form {
  box-shadow: var(--shadow-soft);
  overflow: visible !important;
  padding: 0 !important;
  min-width: 0;
}

.form__wrapper {
  overflow: visible;
}

.v5-form__shell {
  padding: 24px 28px 26px !important;
  margin: 0 !important;
  overflow: visible;
}
.v5-form__badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(61, 158, 255, 0.15);
  color: var(--primary-light);
}
.v5-form__title {
  margin-bottom: 14px !important;
  font-size: 1.45rem !important;
}
.v5-form__body {
  gap: 12px !important;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.v5-form__input:not(.iti__tel-input) {
  padding: 14px 16px !important;
  font-size: 16px !important;
  min-height: 52px;
  box-sizing: border-box;
}
.v5-phone-field {
  position: relative;
  width: 100%;
  z-index: 1;
}
.v5-phone-field:focus-within {
  z-index: 30;
}
.v5-form__body .iti {
  width: 100%;
  display: block;
  position: relative;
  min-height: 52px;
  border: 1px solid rgba(61, 158, 255, 0.45);
  border-radius: var(--border-radius-xs);
  background: rgba(61, 158, 255, 0.08);
  box-sizing: border-box;
  overflow: visible;
}
.v5-form__body .iti .iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.v5-form__body .iti--separate-dial-code .iti__selected-flag {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 10px;
  background: transparent;
}
.v5-form__body .iti--separate-dial-code .iti__selected-dial-code {
  margin: 0 6px 0 2px;
  color: var(--primary-light) !important;
  font-size: 16px !important;
  line-height: 1;
  white-space: nowrap;
}
.v5-form__body .iti .iti__tel-input,
.v5-form__body .iti input[type="tel"] {
  display: block;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  height: 52px;
  padding: 0 14px 0 6.75rem !important;
  font-size: 16px !important;
  line-height: 52px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box;
  border-radius: var(--border-radius-xs);
}
.v5-form__body .iti.field-error,
.v5-form__body .iti.field-ok {
  border-radius: var(--border-radius-xs);
  border-color: transparent;
}
.v5-form__body .iti.field-error {
  box-shadow: inset 0 0 0 2px #f87171;
}
.v5-form__body .iti.field-ok {
  box-shadow: inset 0 0 0 2px var(--primary);
}
.v5-form__body .iti .iti__tel-input.field-error,
.v5-form__body .iti .iti__tel-input.field-ok,
.v5-form__body .iti input.field-error,
.v5-form__body .iti input.field-ok {
  box-shadow: none !important;
  border: none !important;
}
.v5-form__body .iti .iti__dropdown-content,
.v5-form__body .iti .iti__country-list {
  z-index: 10060;
  max-height: min(240px, 45vh);
}
.iti--container {
  z-index: 10070 !important;
}
.v5-form__submit {
  margin-top: 6px !important;
  padding: 16px 18px !important;
  font-size: 16px !important;
  min-height: 54px;
}
.v5-form__note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--secondary);
  text-align: center;
}

.form__input:not(.iti__tel-input) {
  border-radius: var(--border-radius-xs) !important;
  border-color: rgba(61, 158, 255, 0.45) !important;
  background: rgba(61, 158, 255, 0.08) !important;
}

.form__input:focus {
  outline: 2px solid rgba(142, 197, 255, 0.45);
  outline-offset: 2px;
}

.hero__rating-person__image {
  border: 2px solid rgba(61, 158, 255, 0.35);
}

.v5-info-blocks {
  padding: 0 0 70px;
}
.v5-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.v5-info-card {
  padding: 22px 20px;
  background: rgba(61, 158, 255, 0.08);
  border: 1px solid rgba(61, 158, 255, 0.22);
}
.v5-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(61, 158, 255, 0.14);
  color: var(--primary-light);
  border: 1px solid rgba(61, 158, 255, 0.28);
  box-shadow: 0 0 18px rgba(61, 158, 255, 0.12);
}
.v5-info-card__icon .v5-icon { display: block; }
.v5-info-card__title { font-size: 1.05rem; margin-bottom: 8px; font-weight: 500; }
.v5-info-card__text { font-size: 15px; color: var(--secondary); line-height: 1.55; }

.v5-earn-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 28px;
  background: linear-gradient(135deg, rgba(21, 46, 74, 0.9), rgba(61, 158, 255, 0.15));
  border: 1px solid rgba(61, 158, 255, 0.3);
}
.v5-earn-banner__title { font-size: 1.35rem; margin-bottom: 10px; }
.v5-earn-banner__text { color: var(--secondary); margin-bottom: 12px; max-width: 640px; }
.v5-earn-banner__list { padding-left: 18px; color: #c8dcf0; font-size: 15px; }
.v5-earn-banner__list li { margin-bottom: 6px; }
.v5-earn-banner__cta { flex-shrink: 0; white-space: nowrap; }

.v5-reviews-lead { color: var(--secondary); margin: -8px 0 24px; }
.v5-user-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.v5-user-review {
  padding: 16px 18px;
  background: rgba(61, 158, 255, 0.06);
  border: 1px solid rgba(61, 158, 255, 0.18);
}
.v5-user-review__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
}
.v5-user-review__head strong { display: block; font-size: 15px; }
.v5-user-review__head span { display: block; font-size: 12px; color: var(--secondary); }
.v5-user-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(61, 158, 255, 0.35);
  flex-shrink: 0;
}
.v5-user-review p { font-size: 15px; line-height: 1.55; color: #d4e8fa; }
.v5-reviews-more { margin-top: 20px; text-align: center; }
.v5-reviews-more a { color: var(--primary-light); }

.v5-calc-panel {
  border-radius: var(--border-radius-lg) !important;
  box-shadow: var(--shadow-soft);
}

.v5-calc-field {
  margin-bottom: 22px;
}

.v5-calc-field__head,
.v5-calc-field__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--secondary);
}

.v5-calc-field__value {
  font-size: 1.1rem;
  color: var(--primary-light);
  font-weight: 500;
}

.v5-calc-range {
  width: 100%;
  accent-color: var(--primary);
  height: 6px;
}

.v5-calc-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 12px;
  color: var(--secondary);
}

.v5-calc-periods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.v5-calc-period {
  border: 1px solid rgba(61, 158, 255, 0.28);
  background: rgba(61, 158, 255, 0.06);
  color: #e8f2ff;
  border-radius: 12px;
  padding: 10px 8px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}

.v5-calc-period:hover,
.v5-calc-period.is-active {
  background: var(--primary);
  color: var(--primary-dark);
  border-color: var(--primary);
  font-weight: 500;
}

.v5-calc-results {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.v5-calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(6, 13, 26, 0.55);
  border: 1px solid rgba(61, 158, 255, 0.16);
}

.v5-calc-result--highlight {
  background: rgba(61, 158, 255, 0.14);
  border-color: rgba(142, 197, 255, 0.45);
}

.v5-calc-result__label {
  font-size: 14px;
  color: var(--secondary);
}

.v5-calc-result__value {
  font-size: 1.25rem;
  color: var(--primary-light);
}

.field-error:not(.iti__tel-input) { box-shadow: inset 0 0 0 2px #f87171 !important; border-color: transparent !important; }
.field-ok:not(.iti__tel-input) { box-shadow: inset 0 0 0 2px var(--primary) !important; border-color: transparent !important; }
.v5-form-error { color: #fca5a5; font-size: 14px; min-height: 1.2em; margin: 4px 0 0; text-align: center; }
.iti { width: 100%; }
.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code { font-size: 16px !important; }
.iti__search-input, .iti__flag-box, .iti__country-name { color: black !important; }

@media (max-width: 1200px) {
  .hero__inner {
    grid-template-columns: 1fr 520px !important;
    column-gap: 40px !important;
  }
}

@media (max-width: 960px) {
  .v5-topnav--desktop { display: none; }
  .v5-burger { display: flex; }
  .v5-topbar__inner { gap: 10px; }
  .hero__inner {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }
  .v5-info-grid { grid-template-columns: 1fr; }
  .v5-earn-banner { flex-direction: column; align-items: flex-start; }
  .v5-user-reviews { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .v5-calc-periods { grid-template-columns: repeat(2, 1fr); }
  .v5-topbar__cta { padding: 10px 14px !important; }
  .hero__form {
    max-width: none !important;
    width: 100%;
  }
  .v5-form__shell {
    padding: 20px 16px 22px !important;
  }
  .v5-form__body .iti .iti__tel-input,
  .v5-form__body .iti input[type="tel"] {
    padding-left: 6.35rem !important;
    font-size: 16px !important;
  }
  .v5-form__body .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 15px !important;
  }
  .v5-form__body .iti--separate-dial-code .iti__selected-flag {
    padding-left: 8px;
  }
}

html, body {
  background: linear-gradient(165deg, #060d1a 0%, #0a1628 42%, #071220 100%) !important;
  background-color: #060d1a !important;
}

.button {
  background: linear-gradient(135deg, #3d9eff 0%, #6366f1 52%, #4f46e5 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 10px 28px rgba(61, 158, 255, 0.35) !important;
}

.button:hover {
  filter: brightness(1.08);
  color: #fff !important;
  background: linear-gradient(135deg, #8ec5ff 0%, #818cf8 52%, #6366f1 100%) !important;
}

.v5-form__shell {
  background: linear-gradient(160deg, rgba(21, 46, 74, 0.94) 0%, rgba(10, 22, 40, 0.98) 100%) !important;
  border: 1px solid rgba(142, 197, 255, 0.2) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.hero__form {
  border-color: rgba(61, 158, 255, 0.22) !important;
  background: rgba(10, 22, 40, 0.55) !important;
}

.v5-topbar {
  background: rgba(6, 13, 26, 0.9) !important;
  border-bottom-color: rgba(61, 158, 255, 0.22) !important;
}

.v5-earn-banner {
  background: linear-gradient(135deg, rgba(21, 46, 74, 0.95), rgba(61, 158, 255, 0.12)) !important;
}

.v5-calc-result--highlight {
  background: rgba(61, 158, 255, 0.16) !important;
  border-color: rgba(142, 197, 255, 0.4) !important;
}

/* —— Subpages —— */
.v5-sub {
  padding-bottom: 48px;
}

.v5-sub-hero {
  padding: 36px 24px 40px;
  border-bottom: 1px solid rgba(61, 158, 255, 0.14);
  background: linear-gradient(180deg, rgba(21, 46, 74, 0.45) 0%, transparent 100%);
}

.v5-sub-crumb {
  font-size: 13px;
  color: var(--secondary);
  margin-bottom: 18px;
}

.v5-sub-crumb a {
  color: var(--primary-light);
  text-decoration: none;
}

.v5-sub-crumb a:hover {
  text-decoration: underline;
}

.v5-sub-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 12px;
  font-weight: 500;
}

.v5-sub-lead {
  font-size: 1.1rem;
  color: var(--secondary);
  max-width: 720px;
  line-height: 1.6;
  margin: 0;
}

.v5-sub-body {
  padding: 40px 24px 32px;
  max-width: 1040px;
}

.v5-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.v5-sub-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.v5-sub-card {
  padding: 22px 20px;
  border-radius: var(--border-radius-sm);
  background: rgba(61, 158, 255, 0.07);
  border: 1px solid rgba(61, 158, 255, 0.2);
  box-shadow: var(--shadow-soft);
}

.v5-sub-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(61, 158, 255, 0.14);
  color: var(--primary-light);
  border: 1px solid rgba(61, 158, 255, 0.28);
  box-shadow: 0 0 18px rgba(61, 158, 255, 0.12);
}

.v5-sub-card__icon .v5-icon {
  display: block;
}

.v5-sub-card h2,
.v5-sub-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.v5-sub-card p,
.v5-sub-card li {
  font-size: 15px;
  color: #c8dcf0;
  line-height: 1.55;
}

.v5-sub-card ul {
  padding-left: 18px;
  margin: 8px 0 0;
}

.v5-sub-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
  counter-reset: v5step;
}

.v5-sub-step {
  position: relative;
  padding: 24px 20px 20px;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(160deg, rgba(21, 46, 74, 0.85), rgba(61, 158, 255, 0.08));
  border: 1px solid rgba(61, 158, 255, 0.22);
}

.v5-sub-step::before {
  counter-increment: v5step;
  content: counter(v5step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
}

.v5-sub-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.v5-sub-step p {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.55;
  margin: 0;
}

.v5-sub-faq {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.v5-sub-faq__item {
  padding: 18px 20px;
  border-radius: var(--border-radius-xs);
  background: rgba(61, 158, 255, 0.06);
  border: 1px solid rgba(61, 158, 255, 0.18);
}

.v5-sub-faq__item h2 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-light);
}

.v5-sub-faq__item p {
  margin: 0;
  font-size: 15px;
  color: #c8dcf0;
  line-height: 1.55;
}

.v5-sub-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.v5-sub-price-card {
  padding: 24px 20px;
  border-radius: var(--border-radius-sm);
  background: rgba(61, 158, 255, 0.07);
  border: 1px solid rgba(61, 158, 255, 0.2);
  text-align: center;
}

.v5-sub-price-card--highlight {
  background: linear-gradient(160deg, rgba(21, 46, 74, 0.95), rgba(61, 158, 255, 0.12));
  border-color: rgba(142, 197, 255, 0.4);
  box-shadow: var(--shadow-glow);
}

.v5-sub-price-card__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--secondary);
  margin-bottom: 8px;
}

.v5-sub-price-card__value {
  font-size: 1.75rem;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 10px;
}

.v5-sub-price-card p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.5;
  margin: 0;
}

.v5-sub-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.v5-sub-review {
  padding: 18px 20px;
  border-radius: var(--border-radius-sm);
  background: rgba(61, 158, 255, 0.06);
  border: 1px solid rgba(61, 158, 255, 0.18);
}

.v5-sub-review strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.v5-sub-review span {
  display: block;
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.v5-sub-review p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #d4e8fa;
}

.v5-sub-prose {
  max-width: 780px;
  margin: 28px 0;
}

.v5-sub-prose h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--primary-light);
}

.v5-sub-prose p,
.v5-sub-prose li {
  font-size: 15px;
  line-height: 1.65;
  color: #c8dcf0;
}

.v5-sub-prose ul {
  padding-left: 20px;
  margin: 12px 0;
}

.v5-sub-note {
  padding: 16px 18px;
  border-radius: var(--border-radius-xs);
  background: rgba(61, 158, 255, 0.08);
  border-left: 3px solid var(--primary);
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.55;
  margin: 24px 0;
}

.v5-sub-cta {
  padding: 0 24px 16px;
  max-width: 1040px;
}

.v5-sub-cta .v5-earn-banner {
  margin: 0 auto;
}

.v5-sub-footer {
  text-align: center;
  padding: 32px 24px 40px;
  color: var(--secondary);
  font-size: 14px;
  border-top: 1px solid rgba(61, 158, 255, 0.12);
}

.v5-sub-footer a {
  color: var(--primary-light);
  margin: 0 8px;
  text-decoration: none;
}

.v5-sub-footer a:hover {
  text-decoration: underline;
}

/* —— Site footer —— */
.v5-footer {
  position: relative;
  margin-top: 24px;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(61, 158, 255, 0.18);
  background: linear-gradient(180deg, rgba(6, 13, 26, 0.4) 0%, rgba(10, 22, 40, 0.95) 100%);
  overflow: hidden;
}

.v5-footer::after {
  display: none;
}

.v5-footer__glow {
  position: absolute;
  bottom: -320px;
  left: 50%;
  translate: -50% 0;
  width: 720px;
  height: 720px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(61, 158, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.v5-footer__inner {
  position: relative;
  z-index: 1;
}

.v5-footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(0, 2fr);
  gap: 40px 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(61, 158, 255, 0.14);
}

.v5-footer__tagline {
  margin: 14px 0 0;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--secondary);
}

.v5-footer__stars {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(61, 158, 255, 0.08);
  border: 1px solid rgba(61, 158, 255, 0.2);
}

.v5-footer__stars .rating-view__star {
  width: 13px;
  height: 13px;
}

.v5-footer__stars-label {
  font-size: 12px;
  color: #c8dcf0;
  margin-left: 6px;
}

.v5-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.v5-footer__col-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 14px;
}

.v5-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.v5-footer__links a {
  color: #c8dcf0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.v5-footer__links a:hover {
  color: #fff;
}

.v5-footer__cta {
  padding: 18px 18px;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(160deg, rgba(21, 46, 74, 0.9), rgba(61, 158, 255, 0.1));
  border: 1px solid rgba(61, 158, 255, 0.28);
}

.v5-footer__cta-text {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.v5-footer__cta-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 16px !important;
  font-size: 14px !important;
  margin-bottom: 12px;
}

.v5-footer__email {
  display: block;
  font-size: 13px;
  color: var(--primary-light);
  text-decoration: none;
  word-break: break-all;
}

.v5-footer__email:hover {
  text-decoration: underline;
}

.v5-footer__disclaimer {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--border-radius-xs);
  background: rgba(6, 13, 26, 0.55);
  border: 1px solid rgba(61, 158, 255, 0.12);
  max-height: 140px;
  overflow-y: auto;
}

.v5-footer__disclaimer p {
  font-size: 11px;
  line-height: 1.65;
  color: var(--secondary);
  margin: 0 0 10px;
}

.v5-footer__disclaimer p:last-child {
  margin-bottom: 0;
}

.v5-footer__disclaimer a {
  color: var(--primary-light);
}

.v5-footer__bottom {
  margin-top: 24px;
  text-align: center;
}

.v5-footer__bottom .footer__copyright {
  font-size: 13px;
  color: var(--secondary);
}

.v5-footer--compact {
  margin-top: 0;
  padding: 36px 0 28px;
}

.v5-footer--compact .v5-footer__top {
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 24px;
}

.v5-footer--compact .v5-footer__cols {
  grid-template-columns: repeat(2, 1fr);
}

.v5-footer--compact .v5-footer__cta {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .v5-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v5-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .v5-footer__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .v5-footer {
    padding-top: 40px;
  }
  .v5-footer__cols,
  .v5-footer--compact .v5-footer__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .v5-sub-grid,
  .v5-sub-steps,
  .v5-sub-pricing {
    grid-template-columns: 1fr;
  }
  .v5-sub-grid--2,
  .v5-sub-reviews {
    grid-template-columns: 1fr;
  }
}
