* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cera Pro", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
a {
  text-decoration: none;
}

.hidden {
  display: none;
}
header {
  display: flex;
  justify-content: center;
}
.header_desktop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  height: 85px;
}
.header_desktop div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_mobile {
  display: none;
}
.header_desktop nav {
  display: flex;
  align-items: center;
  gap: 32px;
  /* text-transform: uppercase; */
}
.red_button {
  border-radius: 12px;
  background: #f14635;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  height: 55px;
  padding: 12px 16px;
}
.header_desktop a {
  display: flex;
  align-items: center;
}
.timer {
  display: flex;
  width: 78px;
  height: 36px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 49px;
  background: var(--12, linear-gradient(221deg, #55b6ea 14.57%, #043074 92.1%));
}
#timer_desktop {
  color: #fff;
}
.header_menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

/* ── Pulse animation ──────────────────────────────────────── */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(220, 53, 53, 0.6);
  }
  70% {
    transform: scale(1.15);
    opacity: 0.9;
    box-shadow: 0 0 0 8px rgba(220, 53, 53, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(220, 53, 53, 0);
  }
}

.pulse_animation {
  display: inline-block;
  margin-left: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dc3535;
  animation: pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Burger button ────────────────────────────────────────── */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: opacity 0.2s;
}
main {
  padding: 0px 40px;
}
section {
  margin-bottom: 80px !important;
}
/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
.hero {
  border-radius: 16px;
  max-width: 1360px;
  position: relative;
  margin: 0px auto;
  max-height: 1046px;
  overflow: hidden;
  background: url("./images/hero_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px 20px 114px;
  gap: 48px;
  box-shadow: 0 12px 44px 0 rgba(0, 0, 0, 0.16);
}

.hero > * {
  position: relative;
  z-index: 1;
}

/* ── Left part ──────────────────────────────────────────── */
.left_part {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.left_part h1 {
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.left_part > p {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.6;
  border-left: 3px solid #f14635;
  padding-left: 14px;
}

.left_part > p strong {
  font-weight: 700;
}

/* ── Hero form ──────────────────────────────────────────── */
.hero_form {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  padding: 12px;
}

.age-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age_title {
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
}

.pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 6px auto 16px;
}

.pills .pill {
  background: linear-gradient(180deg, #ff5a4b 0%, #ef3340 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  padding: 12px 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 22px rgba(239, 51, 64, 0.25);
}

.pills .pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(239, 51, 64, 0.3);
}

.pills .pill.active {
  background: linear-gradient(180deg, #fff1f1 0%, #ffd8db 100%);
  color: #8a0f1a;
  border-color: rgba(239, 51, 64, 0.5);
}

.form-step.is-hidden,
.age-step.is-hidden {
  display: none;
}

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

.hero_input {
  width: 100%;
  height: 58px;
  border-radius: 10px;
  border: 1.5px solid #a8cff5;
  background: #fff;
  padding: 0 18px;
  font-size: 1rem;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
}

.hero_input::placeholder {
  color: #b3bec9;
}

.hero_input:focus {
  border-color: #1565c0;
}

.hero_phone_wrap:focus-within {
  border-color: #1565c0;
}

.hero_submit {
  width: 100%;
  height: 58px;
  margin-top: 20px;
  border-radius: 10px;
  background: #f14635;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.12s;
  letter-spacing: 0.01em;
}

.hero_submit:hover {
  background: #d63b2b;
  transform: translateY(-1px);
}

.hero_submit:active {
  transform: translateY(0);
}

/* ── Infinite scroll cards — desktop (scroll UP) ────────── */
.infiniti_cards_scroll {
  /* width: 270px; */
  height: calc(100vh - 120px);
  max-height: 720px;
  min-height: 480px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  /* soft fade at top and bottom edges */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.cards_track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: scrollUp 18s linear infinite;
  will-change: transform;
}

.cards_track:hover {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* ── People card ────────────────────────────────────────── */
.people_card {
  display: flex;
  flex-direction: column;
  width: 370px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 121, 156, 0.5);
  backdrop-filter: blur(11px);
  overflow: hidden;
  flex-shrink: 0;
  gap: 24px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.people_card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.people_card_bottom {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.people_card_badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.people_card_badge span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.people_card_info {
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.4;
}
.article {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 20px;
}
.article h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.article_text {
  color: #1f1f1f;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.info_card {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #e3ecf9;
}
.info_card p {
  font-size: 21px;
}
.info_blue {
  color: #1653a4;
  font-weight: 700;
}
.info_red {
  color: #bc002d;
  font-weight: 600;
}

.info_section {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.info_cards_container {
  display: flex;
  gap: 40px;
  justify-content: center;
  background: #fff;
}
.payment_info {
  width: 33%;
  border-bottom: 2px solid #f14635;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment_info h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #111;
}
.payment_info h2 span.plus {
  color: #f14635;
  font-weight: 400;
}
.payment_info p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #444;
  max-width: 200px;
}

/* ══════════════════════════════════════════════════════════
   PHONE SECTION
══════════════════════════════════════════════════════════ */
.phone {
  background: #057aba;
  border-radius: 16px;
  overflow: visible;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 40px;
  /* centre glow */
  isolation: isolate;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    ellipse 70% 80% at 75% 50%,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.phone_inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* ── Phone image ────────────────────────────────────────── */
.phone_image_wrap {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  /* image taller than the block — bleeds above and below */
  margin-top: -60px;
  margin-bottom: 0;
}

.phone_img {
  width: clamp(280px, 30vw, 420px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

/* ── Transaction cards column ───────────────────────────── */
.phone_transactions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  max-width: 460px;
  justify-content: center;
  height: 100%;
}

.phone_tx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 18px;
}

.phone_tx_left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.phone_tx_logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  object-fit: contain;
}

.phone_tx_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.phone_tx_title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.phone_tx_sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone_tx_amount {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   JOIN / NECESSARY CONDITIONS SECTION
══════════════════════════════════════════════════════════ */
.join {
  background: transparent;
  display: flex;
  justify-content: center;
  margin: 0 !important;
}

.join_inner {
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  background: #c4eaff;
}

/* ── Header row (title + desc) ───────────────────────── */
.join_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.join_header_left {
  display: flex;
  flex-grow: 1;
  gap: 16px;
}

.join_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
}

.join_dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f14635;
  flex-shrink: 0;
}

.join_title {
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.76px;
  /* text-wrap: nowrap; */
}

.join_desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  max-width: 380px;
  align-self: flex-end;
}

/* ── Numbered list ──────────────────────────────────────── */
.join_list {
  display: flex;
  flex-direction: column;
}

.join_item {
  margin-bottom: 10px;
}

.join_num {
  font-size: 20px !important;
  font-weight: 400;
  color: #f14635;
  line-height: 1;
  letter-spacing: -0.02em;
}

.join_text {
  font-size: 20px !important;
  font-weight: 400;
  color: #111;
  line-height: 1.35;
  text-transform: none;
}

@media (min-width: 1024px) {
  .join_inner {
    padding: 12px 24px;
  }

  .join_header {
    align-items: flex-start;
    gap: 12px;
  }

  .join_header_left {
    max-width: 480px;
  }

  .join_title {
    font-size: 32px;
    line-height: 1.15;
  }

  .join_list {
    flex: 1;
  }

  .join_item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .join_item:last-child {
    margin-bottom: 0;
  }

  .join_num {
    min-width: 26px;
    text-align: right;
  }

  .join_text {
    font-size: 18px !important;
    line-height: 1.45;
  }
}

.map {
  background: #c4eaff;
  margin: 0px -40px;
  display: flex;
  justify-content: center;
}
.map .container {
  max-width: 660px;
  padding: 70px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.container .container_header,
.container_footer {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container .container_header h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.76px;
}

.container .container_header p {
  font-size: 18px;
}

.map .container img {
  margin: 96px auto;
  max-width: 100%;
}
.button {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #f14635;
  color: #fff;
  display: flex;
  width: 309px;
  height: 72px;
  padding: 15px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* ── Online section ────────────────────────────────────────── */
.online {
  background: var(--22, linear-gradient(180deg, #289ad9 0%, #057aba 100%));
  display: flex;
  justify-content: center;
  margin: 0px -40px;
  padding: 60px 20px 80px;
}

.online_inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.online_title {
  color: #fff;
  text-align: center;
  font-size: clamp(1.4rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  max-width: 860px;
}

.online_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.online_col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Payment card ─────────────────────────────────────────── */
.pay_card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card_row {
  display: flex;
  align-items: center;
  gap: 0;
}

.card_meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 38%;
  min-width: 0;
  overflow: hidden;
}

.card_name {
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card_status {
  font-size: 0.75rem;
  color: #888;
  white-space: nowrap;
}

.card_icon {
  width: 24%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card_spinner {
  width: 26px;
  height: 26px;
}

.card_success {
  width: 26px;
  height: 26px;
}

.card_amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  width: 38%;
  min-width: 0;
  overflow: hidden;
}

.card_sum {
  font-weight: 700;
  color: #111;
}

.card_action {
  color: #888;
}

/* progress bar */
.card_bar {
  display: flex;
  gap: 6px;
}

.bar_seg {
  height: 4px;
  flex: 1;
  border-radius: 4px;
  background: rgba(39, 182, 235, 0.4);
}

.pay_card--pending .bar_seg--fill {
  background: #27b6eb;
}

.pay_card--success .bar_seg {
  background: #22c55e;
}

/* ── Online footer ────────────────────────────────────────── */
.online_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.online_btn {
  display: inline-flex;
  height: 72px;
  min-width: 320px;
  padding: 15px 60px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  color: #1565c0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.online_btn:hover {
  opacity: 0.85;
}

.online_sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: #057aba;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px 32px;
}

/* ── Top row: logo + columns ────────────────────────────── */
.footer_top {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.footer_logo {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.footer_logo img {
  height: 40px;
  width: auto;
}

/* ── Individual column ──────────────────────────────────── */
.footer_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.footer_col_title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: none;
  margin-bottom: 2px;
}

.footer_link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer_link:hover {
  color: #fff;
}

.footer_icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: rgba(255, 255, 255, 0.85);
}

.footer_address {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Divider ────────────────────────────────────────────── */
.footer_divider {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0 24px;
}

/* ── Bottom copyright ───────────────────────────────────── */
.footer_bottom {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.footer_copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   COMMENTS SECTION
══════════════════════════════════════════════════════════ */
.comments {
  /* background: #f8fafc; */
  display: flex;
  justify-content: center;
  padding: 70px 20px 80px;
}

.comments_inner {
  /* max-width: 900px; */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Header row ─────────────────────────────────────────── */
.comments_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.comments_title {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 0.03em;
}

.comments_rating {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  border: 1px solid rgba(141, 174, 246, 0.35);
  background: #fff;
  padding: 10px;
}

.comments_score {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
}

.comments_stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.comments_count {
  font-size: 0.9rem;
  color: #555;
}

/* ── Sub-header ─────────────────────────────────────────── */
.comments_subheader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 24px;
}

.comments_based {
  font-size: 0.9rem;
  color: #666;
}

.comments_trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
}

/* ── Comment list ───────────────────────────────────────── */
.comments_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Single comment card ────────────────────────────────── */
.comment_card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #e3ecf9;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  transition: box-shadow 0.2s;
}
.comment_card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

/* ── Avatar ─────────────────────────────────────────────── */
.comment_avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment_avatar_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.comment_avatar_initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* ── Body ───────────────────────────────────────────────── */
.comment_body {
  flex: 1;
  min-width: 0;
}

.comment_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.comment_author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.comment_name {
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

.comment_phone {
  font-size: 0.85rem;
  color: #888;
  white-space: nowrap;
}

/* ── Likes ──────────────────────────────────────────────── */
.comment_likes {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.comment_heart_icon {
  width: 14px;
  height: 11px;
  fill: #bc002d;
}

.comment_likes_count {
  font-size: 0.88rem;
  font-weight: 600;
  color: #555;
}

/* ── Text ───────────────────────────────────────────────── */
.comment_text {
  /* font-size: 0.92rem; */
  line-height: 1.6;
  color: #333;
}

/* ══════════════════════════════════════════════════════════
   FORM: AGE QUESTION + CONTACT FORM
══════════════════════════════════════════════════════════ */
.formaa {
  padding: 70px 80px;
  display: flex;
  justify-content: center;
}

/* ── Card header ───────────────────────────────── */
.fq_card_header {
  text-align: center;
  margin-bottom: 28px;
}

.fq_logo_row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.fq_logo_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}

.fq_logo_name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.fq_title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.fq_slots {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.fq_slots strong {
  color: #fff;
}

/* ── 2-column row ──────────────────────────────── */
.fq_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Label ─────────────────────────────────────── */
.fq_label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 7px;
  font-weight: 500;
}

/* ── Form wrapper width ────────────────────────── */
.fq_form_wrap {
  width: 100%;
  max-width: 900px;
}

/* ── Shared card wrapper ────────────────────────────────── */
.fq_age,
.fq_form_wrap {
  border-radius: 20px;
  background: linear-gradient(160deg, #55b6ea 0%, #1565c0 40%, #043074 100%);
  padding: 32px 28px;
}

/* ── Age step ───────────────────────────────────────────── */
.fq_age_title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.fq_age_btns {
  display: flex;
  gap: 16px;
}

.fq_age_btn {
  flex: 1;
  height: 60px;
  border: none;
  border-radius: 14px;
  background: #d94f2a;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.18s,
    transform 0.12s;
}
.fq_age_btn:hover {
  background: #c43e1a;
  transform: translateY(-1px);
}
.fq_age_btn:active {
  transform: translateY(0);
}

/* ── Form wrapper ───────────────────────────────────────── */
.fq_form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Input field ────────────────────────────────────────── */
.fq_field {
  position: relative;
}

.fq_input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  background: #fff;
  font-size: 1rem;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
}
.fq_input::placeholder {
  color: #aab;
}
.fq_input:focus {
  border-color: #22c55e;
}

/* ── Phone field ────────────────────────────────────────── */
.fq_phone_field {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid transparent;
  overflow: hidden;
  transition: border-color 0.2s;
}
.fq_phone_field:focus-within {
  border-color: #22c55e;
}

.fq_phone_prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px 0 14px;
  flex-shrink: 0;
  border-right: 1px solid #dde3ed;
  height: 58px;
}

.fq_flag {
  width: 24px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 2px;
}

.fq_trust_icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.fq_code {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.fq_chevron {
  width: 10px;
  height: 6px;
  margin-left: 2px;
}

.fq_input--phone {
  border: none;
  border-radius: 0;
  height: 56px;
  flex: 1;
  padding-left: 14px;
}
.fq_input--phone:focus {
  border-color: transparent;
}

/* ── Submit button ──────────────────────────────────────── */
.fq_submit {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 12px;
  background: #f14635;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition:
    opacity 0.2s,
    transform 0.12s;
  margin-top: 4px;
}
.fq_submit:hover {
  opacity: 0.9;
}
.fq_submit:active {
  transform: scale(0.99);
}

/* ── Advisory notice ────────────────────────────────────── */
.fq_notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  line-height: 1.5;
}

.fq_notice_icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Trust badge ────────────────────────────────────────── */
.fq_trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  padding: 13px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
