@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@font-face {
  font-family: "lottopulseau-Montserrat";
  src: url("/LottoPulseAU-Montserrat-VariableFont_wght.ttf") format("truetype");
}
body {
  box-sizing: border-box;
  font-family: "lottopulseau-Montserrat";
  background-color: #0d0d0d;
}

.montserrat {
  font-family: "lottopulseau-Montserrat";
}

h2 {
  color: #fff;
}

/* =====================  ROOT COLORS ===================== */
:root {
  --c-bg-dark: #230400;
  --c-green: #ce2d00;
  --c-green-30: #ce2d004d; /* 30 % */
  --c-green-light: #00ca2c;
  --c-text: #002305;
  --c-white: #fff;
}

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

body {
  margin: 0;
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-white);
}

.green-color-font {
  color: #fff;
}

.no-margin {
  margin: 0px;
}

/* =====================  HEADER ===================== */
.lottopulseau-header {
  border-bottom: 1px solid var(--c-green-30);
  background: var(--c-white);
}

.lottopulseau-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

@media (max-width: 680px) {
  .lottopulseau-container {
    height: min-content;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 680px) {
  .lottopulseau-burger {
    right: 20px;
    position: absolute;
  }
}
/* Logo */
.lottopulseau-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.lottopulseau-logo__icon {
  flex: none;
}

.lottopulseau-logo__text {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #ce2d00 0%, #210b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav */
.lottopulseau-nav__list {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lottopulseau-nav__link {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  color: #ce2d00;
}

.lottopulseau-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--c-green);
  transition: width 0.25s;
}

.lottopulseau-nav__link:hover {
  color: var(--c-green);
}

.lottopulseau-nav__link:hover::after {
  width: 100%;
}

/* Buttons */
.lottopulseau-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.9375rem;
  line-height: 1;
  transition: background 0.2s, box-shadow 0.2s;
}

.lottopulseau-btn--primary {
  color: var(--c-white);
  background: var(--c-green);
}

.lottopulseau-btn--primary:hover {
  background: #fff;
  border: 1px solid #ce2d00;
  color: #ce2d00;
}

.lottopulseau-btn--ghost {
  color: var(--c-green);
  background: transparent;
  border: 2px solid var(--c-green);
}

.lottopulseau-btn--ghost:hover {
  background: var(--c-green-30);
}

.lottopulseau-auth {
  display: flex;
  gap: 16px;
}

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

.lottopulseau-burger span {
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: var(--c-green);
}

/* =====================  RESPONSIVE ===================== */
@media (max-width: 900px) {
  .lottopulseau-nav,
  .lottopulseau-auth {
    display: none;
  }
  .lottopulseau-burger {
    display: flex;
    margin-left: auto;
  }
}
/* ----- бургер-анимация ----- */
.lottopulseau-burger.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.lottopulseau-burger.is-active span:nth-child(2) {
  opacity: 0;
}

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

/* ----- раскрытое меню на мобилке ----- */
@media (max-width: 768px) {
  .lottopulseau-nav.is-open,
  .lottopulseau-authBar.is-open {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 24px 0;
  }
  .lottopulseau-nav__list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .lottopulseau-header {
    align-items: flex-start;
  }
}
.lottopulseau-authBar {
  display: flex;
  gap: 16px;
}

.lottopulseau-loginBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: #ce2d00;
  border: 2px solid var(--c-green);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.lottopulseau-loginBtn:hover {
  background: #fff;
  color: #ce2d00;
}

.lottopulseau-signupBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: #ce2d00;
  border: 2px solid var(--c-green);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.lottopulseau-signupBtn:hover {
  background: #fff;
  color: #ce2d00;
}

.margin-bottom-40px {
  margin-bottom: 40px;
}

/* ---------- HERO ---------- */
.lottopulseau-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(90deg, #000 0%, #ce2d00 100%);
  color: #fff;
}

@media (max-width: 1094px) {
  .lottopulseau-hero {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 1094px) {
  .hero-img {
    width: 90%;
  }
}
.lottopulseau-hero__inner {
  max-width: 600px;
  margin-left: 72px;
}

.lottopulseau-hero h1 {
  margin: 0 0 24px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.lottopulseau-hero__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.lottopulseau-hero__text {
  margin: 0 0 40px;
  font-size: 1rem;
  line-height: 1.6;
}

.lottopulseau-btn--ghost {
  padding: 10px 97px;
  border: 2px solid #fff;
  color: #fff;
}

.lottopulseau-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .lottopulseau-hero {
    min-height: 600px;
  }
  .lottopulseau-hero__inner {
    margin: 0 24px;
  }
  .lottopulseau-hero h1 {
    font-size: 2rem;
    word-break: break-all;
  }
}
.lottopulseau-experience {
  background: var(--c-bg-dark);
  padding: 80px 24px;
  color: var(--c-white);
}

.lottopulseau-experience__inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  gap: 64px;
  align-items: center;
}

.lottopulseau-experience__media img {
  display: block;
  width: 500px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.lottopulseau-experience__title {
  margin: 0 0 24px;
  font-size: 1.875rem;
  text-transform: uppercase;
  font-weight: 700;
}

.lottopulseau-experience__divider {
  display: block;
  width: 100%;
  max-width: 440px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}

.lottopulseau-experience__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lottopulseau-experience__list li {
  position: relative;
  padding-left: 0.25em;
  font-size: 1rem;
}

.lottopulseau-btn--primary {
  min-width: 180px;
  text-align: center;
  margin-top: 24px;
  padding: 14px 88px;
}

@media (max-width: 992px) {
  .lottopulseau-experience__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lottopulseau-experience__media {
    max-width: 520px;
    margin: 0 auto;
  }
  .lottopulseau-experience__title {
    font-size: 1.625rem;
  }
}
.lottopulseau-stats {
  background: var(--c-bg-dark);
  padding: 60px 0px;
}

.lottopulseau-stats__inner {
  max-width: 100%;
  background: var(--c-green);
  padding: 40px 24px;
}

.lottopulseau-stats__list {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lottopulseau-stats__item {
  width: 400px;
  text-align: center;
  color: var(--c-white);
}

.lottopulseau-stats__value {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
}

.lottopulseau-stats__label {
  display: block;
  margin-top: 8px;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .lottopulseau-stats__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.lottopulseau-promise {
  background: var(--c-bg-dark);
  padding: 80px 24px;
  color: var(--c-white);
  text-align: center;
}

.lottopulseau-promise-orange {
  background-color: #561100;
}

.lottopulseau-promise__inner {
  max-width: 1280px;
  margin: auto;
}

.lottopulseau-promise__title {
  margin: 0 0 48px;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lottopulseau-promise__title-left {
  text-align: left;
}

.lottopulseau-promise__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.lottopulseau-promise__card {
  width: 400px;
  background-color: #561100;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: var(--c-white);
}

.lottopulseau-promise__card-no-padding {
  padding: 0px;
}

.lottopulseau-promise__icon {
  width: 354px;
  height: 354px;
}

@media (max-width: 446px) {
  .lottopulseau-promise__icon {
    width: 100%;
    height: auto;
  }
}
.icon-100 {
  width: 100%;
}

.lottopulseau-promise__label {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25px;
  color: #fff;
}

@media (max-width: 768px) {
  .lottopulseau-promise__card {
    width: 100%;
  }
}
.lottopulseau-cta {
  background: #230400;
  padding: 80px 24px;
}

.lottopulseau-cta__box {
  max-width: 1280px;
  margin: auto;
  background: #922000;
  border-radius: 32px;
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: var(--c-white);
}

.lottopulseau-cta__title {
  margin: 0 0 16px;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lottopulseau-cta__title-small {
  margin: 0px;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lottopulseau-cta__desc {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.lottopulseau-cta__btn {
  flex-shrink: 0;
  min-width: 180px;
  text-align: center;
  border: 2px solid #ce2d00;
  color: #ce2d00;
  padding: 14px 80px;
  background-color: #fff;
}

.lottopulseau-cta__btn:hover {
  background: #ce2d00;
  border: 2px solid #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .lottopulseau-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }
  .lottopulseau-cta__btn {
    width: 100%;
  }
}
.lottopulseau-footer {
  background: #333333;
  color: #fff;
  padding: 64px 24px 48px;
  font-size: 0.9375rem;
}

.lottopulseau-footer a {
  text-decoration: none;
}

.lottopulseau-footer__top {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
}

.lottopulseau-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.lottopulseau-footer__navList {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.lottopulseau-footer__disclaimer {
  max-width: 1280px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.lottopulseau-footer__grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 40px;
}

.lottopulseau-footer__col h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
}

.lottopulseau-footer__col p {
  margin: 0;
  line-height: 1.6;
}

.lottopulseau-footer__badges {
  max-width: 1280px;
  margin: auto;
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding: 24px 0 40px;
}

.lottopulseau-footer__badges img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.lottopulseau-footer__copy {
  text-align: center;
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .lottopulseau-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .lottopulseau-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .lottopulseau-footer__navList {
    flex-wrap: wrap;
    gap: 24px;
  }
  .lottopulseau-footer__badges {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.lottopulseau-about {
  background: linear-gradient(90deg, #000 0%, #ce2d00 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 64px 24px;
  color: var(--c-white);
}

.lottopulseau-about__inner {
  max-width: 960px;
  margin: auto;
}

.lottopulseau-about__title {
  margin: 0 0 16px;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lottopulseau-about__divider {
  display: block;
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.lottopulseau-about__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.bg-white {
  background: #230400;
}

.lottopulseau-values {
  background: var(--c-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 64px 24px;
  color: var(--c-white);
}

.lottopulseau-values__inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.lottopulseau-values__title {
  margin: 0 0 16px;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lottopulseau-values__divider {
  display: block;
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.lottopulseau-values__cards {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.lottopulseau-values__card {
  background: #ce2d00;
  border-radius: 8px;
  padding: 32px 40px;
  width: 397px;
}

.lottopulseau-values__card h3 {
  margin: 0 0 16px;
  font-size: 1.125rem;
  font-weight: 700;
}

.lottopulseau-values__card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
  font-size: 0.9375rem;
}

@media (max-width: 992px) {
  .lottopulseau-values__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lottopulseau-values__intro {
    max-width: 520px;
  }
}
.lottopulseau-whyChoose {
  background: #230400;
  padding: 64px 24px;
  color: var(--c-text);
}

.lottopulseau-whyChoose__inner {
  max-width: 1280px;
  margin: auto;
}

.lottopulseau-whyChoose__title {
  margin: 0 0 24px;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-green);
}

.lottopulseau-whyChoose__divider {
  display: block;
  width: 100%;
  max-width: 680px;
  height: 2px;
  background: var(--c-green);
  margin-bottom: 40px;
}

.lottopulseau-whyChoose__list {
  list-style: none;
  display: flex;
  justify-content: space-around;
  gap: 32px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.lottopulseau-whyChoose__item {
  text-align: start;
  color: var(--c-green);
}

.lottopulseau-whyChoose__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 16px;
}

.lottopulseau-whyChoose__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .lottopulseau-whyChoose__list {
    gap: 40px;
    justify-content: center;
  }
}
.lottopulseau-faq {
  background: var(--c-bg-dark);
  padding: 64px 24px 96px;
  color: var(--c-white);
  text-align: center;
}

.lottopulseau-faq__inner {
  max-width: 880px;
  margin: auto;
}

.lottopulseau-faq__title {
  margin: 0 0 40px;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lottopulseau-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lottopulseau-faq__item {
  background: #333333;
  border-radius: 8px;
  padding: 32px 40px;
  text-align: left;
}

.lottopulseau-faq__q {
  margin: 0 0 12px;
  font-size: 1.0625rem;
  font-weight: 700;
  position: relative;
}

.lottopulseau-faq__a {
  margin: 16px 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/*  ====== SECTION & CARD  ====== */
.lottopulseau-contactSection {
  background: url("/assets/img/phone.webp") center/cover no-repeat;
  padding: 96px 24px;
  display: flex;
  justify-content: flex-start;
}

.lottopulseau-contactCard {
  margin-left: 200px;
  width: 800px;
  backdrop-filter: blur(4px);
  border-radius: 18px;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/*  ====== FIELDS  ====== */
.lottopulseau-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lottopulseau-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.lottopulseau-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: 0;
  box-sizing: border-box;
  background-color: #fff;
}

.lottopulseau-field--textarea .lottopulseau-input {
  min-height: 120px;
  resize: vertical;
}

.lottopulseau-stateIcon {
  position: absolute;
  right: 16px;
  top: 46px;
  font-size: 1rem;
}

.lottopulseau-error .lottopulseau-input {
  border-color: #e53935;
}

.lottopulseau-warning .lottopulseau-input {
  border-color: #f0ad4e;
}

.lottopulseau-success .lottopulseau-input {
  border-color: #2e7d32;
}

/*  ====== CHECKBOX  ====== */
.lottopulseau-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #002305;
}

.lottopulseau-checkbox input {
  display: none;
}

.lottopulseau-checkboxBox {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 3px;
  flex: none;
  position: relative;
}

.lottopulseau-checkbox input:checked + .lottopulseau-checkboxBox {
  background: #ce2d00;
}

.lottopulseau-checkbox input:checked + .lottopulseau-checkboxBox::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.contact-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/*  ====== BUTTON  ====== */
.lottopulseau-submitBtn {
  display: block;
  align-items: center;
  justify-content: center;
  width: 246px;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  color: #ce2d00;
  background: #fff;
  border: 2px solid var(--c-green);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.lottopulseau-submitBtn:hover {
  background: #ce2d00;
  color: #fff;
}

/*  ====== IMAGE  ====== */
.lottopulseau-contactImage img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
}

/*  ====== MODAL  ====== */
.lottopulseau-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s;
  z-index: 9999;
}

.lottopulseau-modal--show {
  opacity: 1;
  visibility: visible;
}

.lottopulseau-modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 32px 48px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  color: #002305;
  font-size: 1rem;
}

.lottopulseau-modal__close {
  margin-top: 24px;
  display: block;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  color: #ce2d00;
  background: #fff;
  border: 2px solid var(--c-green);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-sizing: border-box;
}

.lottopulseau-modal__close:hover {
  background: #ce2d00;
  color: #fff;
}

/*  ====== RESPONSIVE  ====== */
@media (max-width: 992px) {
  .lottopulseau-contactCard {
    width: 100%;
    max-width: 520px;
    margin: auto;
  }
  .lottopulseau-submitBtn {
    align-self: center;
  }
  .lottopulseau-contactImage img {
    margin: 0 auto;
  }
}
@media (max-width: 1126px) {
  .lottopulseau-experience__inner {
    flex-direction: column-reverse;
  }
}
@media (max-width: 574px) {
  .lottopulseau-experience__media img {
    width: 100%;
  }
  .lottopulseau-values__inner {
    flex-direction: column;
  }
}
@media (max-width: 510px) {
  .lottopulseau-experience__content,
  .lottopulseau-experience__title,
  .lottopulseau-stats__item {
    width: 100%;
  }
}
/* overlay */
.lottopulseau-signupModal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s;
  z-index: 10000;
}

.lottopulseau-signupModal.is-open {
  opacity: 1;
  visibility: visible;
}

/* карточка */
.lottopulseau-signupCard {
  width: 420px;
  max-width: 90%;
  background: #230400;
  border-radius: 28px;
  padding: 48px 40px 40px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lottopulseau-signupTitle {
  text-align: center;
  margin: 0 0 8px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lottopulseau-signupInput {
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: 0;
  box-sizing: border-box;
}

.lottopulseau-signupInput:invalid {
  box-shadow: 0 0 0 2px #e53935 inset;
}

.lottopulseau-signupInput:valid {
  box-shadow: 0 0 0 2px #2e7d32 inset;
}

.lottopulseau-signupFoot {
  font-size: 0.875rem;
  text-align: center;
  margin: 0;
}

.lottopulseau-signupFoot a {
  color: #fff;
  text-decoration: underline;
}

/* X-кнопка */
.lottopulseau-signupClose {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

#signupForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== overlay / card ===== */
.lottopulseau-loginModal,
.lottopulseau-loginSuccess {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s;
  z-index: 10000;
}

.lottopulseau-loginModal.is-open,
.lottopulseau-loginSuccess.is-open {
  opacity: 1;
  visibility: visible;
}

.lottopulseau-loginCard {
  width: 420px;
  max-width: 90%;
  background: #230400;
  border-radius: 28px;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
  position: relative;
}

.lottopulseau-loginTitle {
  text-align: center;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lottopulseau-loginInput {
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: 0;
  box-sizing: border-box;
}

.lottopulseau-loginInput:invalid {
  box-shadow: 0 0 0 2px #e53935 inset;
}

.lottopulseau-loginInput:valid {
  box-shadow: 0 0 0 2px #2e7d32 inset;
}

.lottopulseau-loginBtnInner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: #ce2d00;
  border: 2px solid var(--c-green);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.lottopulseau-loginBtnInner:hover {
  background: #fff;
  color: #ce2d00;
}

.lottopulseau-loginFoot {
  font-size: 0.875rem;
  text-align: center;
  margin: 0;
}

.lottopulseau-loginFoot a {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}

.lottopulseau-loginClose {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

/* success box */
.lottopulseau-loginSuccess__box {
  background: #230400;
  border-radius: 20px;
  padding: 40px 56px;
  text-align: center;
  color: #fff;
}

.lottopulseau-loginSuccess__box p {
  margin: 0 0 28px;
  font-size: 1.1rem;
  font-weight: 700;
}

.lottopulseau-successOk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: #ce2d00;
  border: 2px solid var(--c-green);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.lottopulseau-successOk:hover {
  background: #fff;
  color: #ce2d00;
}

#loginForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 450px) {
  .lottopulseau-logo__text {
    font-size: 16px;
  }
  .lottopulseau-btn {
    width: 100%;
  }
}

/*# sourceMappingURL=LottoPulseAU.css.map */
