:root {
  --green: #F14635;
  --green-soft: #e5f4e6;
  --green-ink: #1e4b20;
  --red: #f13548;
  --red-ink: #f14635;
  --white: #ffffff;
  --black: #000000;
  --content: 900px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Golos Text", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button,
input {
  font: inherit;
}
.wrap {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}
.top-strip {
  background: var(--green);
  min-height: 42px;
  display: flex;
  align-items: center;
}
.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}
.top-strip__icon {
  width: 18px;
  height: 18px;
}
.top-strip__inner strong {
  font-weight: 700;
}
.hero-zone {
  background: #FFF6F1;
  padding: 24px 0 40px;
}
.site-header {
  width: fit-content;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 12px 24px;
}
.site-logo {
  position: relative;
  width: 107px;
  height: 28px;
  flex-shrink: 0;
}
.site-logo__mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 28px;
}
.site-logo__word {
  position: absolute;
  left: 29px;
  top: 6px;
  width: 78px;
  height: 16px;
}
.site-divider {
  width: 1px;
  height: 20px;
  background: #e5edf0;
  flex-shrink: 0;
}
.site-timer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--black);
}
.site-timer strong {
  font-weight: 700;
  color: #F14635;
  background: #FFE1DE;
  border-radius: 12px;
  padding: 6px 10px;
}
.hero-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}
.section {
  padding: 34px 0 0;
}
.section--tight {
  padding-top: 24px;
}

.section p {
  margin-bottom: 16px;
}

.boxxer {
    background: #FFF6F1;
    padding: 40px;
    width: 100%;
    border-radius: 16px;
}

.content .boxxer p {
    font-size: 16px;

}

.boxxer b, .boxxer span {
    color: #F14635;
}
.content h1,
.content h2 {
  font-size: clamp(24px, 3.1vw, 30px);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 13px;
}
.content p {
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.35;
}
.notice {
  border-top: 3px solid var(--green);
  padding-top: 24px;
}
.notice p {
  margin-bottom: 13px;
}
.notice p:last-child {
  margin-bottom: 0;
}
.notice .warn {
  color: #F14635;
}

.form-text {
    color: #fff;
    text-align: center;

}
.age-box {
  margin-top: 32px;
  background: #F14635;
  border-radius: 16px;
  padding: 40px;
}
.age-form[hidden],
.age-step[hidden] {
  display: none;
}
.age-box h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 16px;
}
.age-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}
.age-btn {
  min-height: 56px;
  border-radius: 10px;
  border: none;
  background: #21BA27;
  color: var(--white);
  font-family: inherit;
  font-size: clamp(14px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
}
.age-btn:hover {
  transform: translateY(-2px);
}
.age-btn.is-active {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
}
.age-form {
  width: 100%;
}
.lead-form {
  display: flex;
  flex-direction: column;
}
.age-form__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.lead-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lead-label {
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.01em;
}
.lead-input {
  min-height: 52px;
  border: none;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.5;
  color: #111;
  width: 100%;
}
.lead-input::placeholder {
  color: #759ABE;
}
.lead-input:focus {
  outline: 0;
}

.form-logo {
    width: 200px;
    display: block; margin: 0 auto 15px;
}
.lead-submit {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: #21BA27;
  color: var(--white);
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform 0.2s,
    opacity 0.2s;
  width: 100%;
  padding: 15px;
}
.lead-submit:hover {
  transform: translateY(-1px);
}
.methods-title {
  margin-bottom: 16px;
}
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.method {
  background: #FFF6F1;
  border-radius: 24px;
  padding: 24px;
}
.method img {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}
.method p {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.3;
}
.map-section {
  margin-top: 38px;
  background: #FFF6F1;
  padding: 52px 0;
}
.map-head {
  text-align: center;
  margin-bottom: 42px;
}
.map-head h2 {
  margin-bottom: 16px;
}
.map-head .small {
  color: #F14635;
}
.map-wrap {
  max-width: 706px;
  margin: 0 auto;
}
.map-wrap img {
  width: 100%;
}
.cta-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}
.btn-main {
  padding: 20px;
  min-width: 309px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  cursor: pointer;
  font-family: inherit;
  transition:
    transform 0.2s,
    opacity 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #F14635;
  color: var(--white);
  font-weight: 600;
}
.btn-main:hover {
  transform: translateY(-2px);
}
.online {
  background: #F14635;
  padding: 62px 0;
}

.online .btn-main {
color: #F14635;
background: #fff;
}

.online h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 36px;
}
.online-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.stream {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(7, 40, 135, 0.08);
  padding: 12px;
}
.stream-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.stream-name {
  font-size: 18px;
  color: #050f2c;
  line-height: 1.2;
}
.stream-time {
  margin-top: 2px;
  font-size: 14px;
  color: rgba(5, 15, 44, 0.5);
  line-height: 1.2;
}
.stream-center {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.stream-right {
  text-align: right;
}
.stream-amount {
  font-size: 18px;
  font-weight: 700;
  color: #050f2c;
  line-height: 1.2;
}
.stream-status {
  margin-top: 2px;
  font-size: 14px;
  color: rgba(5, 15, 44, 0.5);
  line-height: 1.2;
}
.stream-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.stream-progress span {
  height: 4px;
  border-radius: 20px;
}
.stream-progress.search span {
  background: rgba(39, 182, 235, 0.4);
}
.stream-progress.search span:first-child {
  background: #27b6eb;
}
.stream-progress.done span {
  background: #0abf11;
}
.online .cta-row {
  margin-top: 38px;
}
.reviews {
  background: #FFF6F1;
  padding: 40px 0 56px;
}
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.reviews-head .label {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.reviews-head .sub {
  font-size: clamp(16px, 2vw, 22px);
  color: #50402e;
  line-height: 1.25;
}
.rating {
  width: min(100%, 323px);
}
.rating-pill {
  border: 1px solid rgba(236, 225, 225, 0.35);
  border-radius: 30px;
  background: var(--white);
  padding: 12px 16px;
}
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rating-score {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}
.rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.rating-stars img {
  width: 22px;
  height: 22px;
}
.rating-count {
  font-size: 16px;
  line-height: 1.2;
}
.rating-trust {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.rating-trust img {
  width: 20px;
  height: 20px;
}
.reviews-list {
  display: grid;
  gap: 12px;
}
.review {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(4, 28, 44, 0.12);
  padding: 12px;
}
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-user img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  object-fit: cover;
}
.review-user span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.review-like {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--red-ink);
  font-size: 16px;
  line-height: 1;
}
.review-like img {
  width: 16px;
  height: 16px;
}
.review-text {
  margin-top: 8px;
  padding-left: 64px;
  color: var(--green-ink);
  font-size: 16px;
  line-height: 1.6;
}
.footer {
  background: #F14635;
  color: var(--white);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-logo {
  position: relative;
  width: 175px;
  height: 45px;
}
.footer-logo__mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 45px;
}
.footer-logo__word {
  position: absolute;
  left: 47px;
  top: 10px;
  width: 128px;
  height: 25px;
}
.footer h3 {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer a,
.footer p {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
}
.footer-copy {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  padding-top: 16px;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .site-header {
    gap: 24px;
    padding: 10px 14px;
  }
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .online-grid {
    grid-template-columns: 1fr;
  }
  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 680px) {
  .wrap {
    width: min(calc(100% - 40px), var(--content));
  }
  .top-strip__inner {
    font-size: 13px;
  }
  .hero-zone {
    padding: 16px 0 0;
  }
  .site-header {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    margin-bottom: 16px;
  }
  .site-divider {
    display: block;
  }
  .site-timer {
    gap: 8px;
    font-size: 12px;
    flex-direction: row;
    align-items: center;
  }
  .hero-card {
    border: 0;
  }
  .content h1,
  .content h2 {
    font-size: 21px;
    line-height: 1.3;
  }
  .content p {
    font-size: 17px;
    line-height: 1.4;
  }
  .section {
    padding-top: 40px;
  }
  .section--tight {
    padding-top: 32px;
  }
  .notice p:first-child strong {
    display: block;
    font-size: 21px;
    line-height: 1.3;
  }
  .notice .warn {
    font-size: 17px;
    line-height: 1.4;
  }
  .age-box {
    padding: 40px 16px;
    margin-top: 20px;
  }
  .age-box h3 {
    font-size: 24px;
  }
  .age-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .age-btn {
    min-height: 48px;
    font-size: 20px;
  }
  .map-section {
    padding: 52px 0;
    margin-top: 24px;
  }
  .methods-title {
    font-size: 21px;
  }
  .methods-grid {
    gap: 8px;
  }
  .map-head {
    margin-bottom: 32px;
  }
  .map-head h2 {
    font-size: 21px;
  }
  .map-head p {
    font-size: 17px;
    line-height: 1.4;
  }
  .map-wrap {
    max-width: 335px;
  }
  .cta-row {
    margin-top: 24px;
  }
  .btn-main {
    min-width: 0;
    width: 100%;

    font-size: 18px;
  }
  .online {
    padding: 32px 0;
  }
  .online h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .online-grid {
    gap: 6px;
  }
  .stream-progress {
    gap: 4px;
  }
  .stream-head {
    gap: 6px;
  }
  .stream-amount,
  .stream-name {
    font-size: 16px;
  }
  .stream-status,
  .stream-time {
    font-size: 12px;
  }
  .reviews {
    padding: 40px 0;
  }
  .reviews-head {
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
  }
  .reviews-head .sub {
    font-size: 16px;
  }
  .rating {
    width: 100%;
  }
  .review-head {
    padding: 0;
  }
  .review-text {
    padding-left: 0;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer-grid {
    gap: 32px;
  }
  .footer-copy {
    margin-top: 32px;
  }

  .form-logo {
    width: 160px;
  }
}
.card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card_spinner {
  width: 26px;
  height: 26px;
}
.footer-shitter {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}
