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

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: #2755CA;
}

ul {
  list-style: none;
}

.section.legal-section li {
  list-style: none;
  position: relative;
  padding-left: 1.2em;
}

.section.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 12px;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Variables */
:root {
  --color-primary: #2755CA;
  --color-primary-dark: #2755CA;
  --color-black: #121212;
  --color-white: #fff;
  --color-light-gray: #f5f5f5;
  --color-gray: #ccc;
  --transition-fast: 0.2s ease;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1rem;
   font-family: "Montserrat", sans-serif;
}

/* BUTTONS */
.btn {
  display: inline-block;
  border-radius: 0.5rem;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hero .btn--primary {
color: #2755CA;
  background: #fff;
}

.btn--primary {
  position: relative;
  display: inline-block;
  padding: 16px 24px;
  border-radius: 60px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(90deg, #2755CA 0%, #366aee 100%);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--large {
  font-size: 16px;
}

/* HEADERS */
.header {
  width: 100%;
  left: 0;
  z-index: 200;
}

.header--default {
  position: absolute;
  top: 30px;
  color: var(--color-white);
}

.header--fixed {
  position: fixed;
  top: 0;
  background-color: var(--color-white);
  color: #333;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header--fixed.visible {
  transform: translateY(0);
}

.header__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 300px;
  background: rgba(255, 255, 255, 0.96);
}

.header .logo p {
  color: #2755CA;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  vertical-align: super;
  font-family: "Montserrat", sans-serif;
}

.header .logo p span {
  color: #2755CA;
}

.header .logo p.light-logo {
  color: #121212;
}

.logo img {
  height: 38px;
  display: inline-block;
  margin-right: 1rem;
}

.nav--desktop .nav__list {
  display: flex;
  gap: 1rem;
}

.nav__link {
  font-weight: 500;
  color: #121212;
  transition: color var(--transition-fast);
  font-size: 14px;
}

.nav__link:hover {
  color: var(--color-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  margin-left: 0.5rem;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #121212;
  border-radius: 2px;
  transition: background var(--transition-fast);
}

@media screen and (max-width: 1066px) {
  .nav--desktop .nav__list {
    gap: 1rem;
  }

  .nav__link {
    font-weight: 700;
    font-size: 12px;
  }

  .btn--primary {
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    padding: 0.6rem 1rem;
  }

  .header__container {
    padding: 1rem 1rem;
  }

  .logo img {
    margin-right: 0rem;
    height: 29px;
  }

  .header .logo p {
    font-size: 14px;
    line-height: 1.1;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 150;
}

.mobile-menu.visible {
  transform: translateX(0);
}

.mobile-menu__list {
  padding: 8rem 2rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__link {
  color: #121212;
  font-size: 1.2rem;
  padding: 0.75rem 1rem;
}

.mobile-menu__link.btn {
  margin-top: 1.5rem;
  color: #fff;
}

/* HERO SECTION */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6rem 1rem 0rem 1rem;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  background: #2755CA;
  border-radius: 0 0 160px 160px;
}

.flip-in-hor-bottom {
  -webkit-animation: flip-in-hor-bottom 1s cubic-bezier(0.165, 0.84, 0.44, 1)
    both;
  animation: flip-in-hor-bottom 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.hero__content {
  flex: 1;
  z-index: 1;
  max-width: 1400px;
  text-align: center;
  padding: 1rem;
  display: inline-block;
}

.hero img {
  max-width: 100%;
  display: inline-block;
  vertical-align: bottom;
  border-radius: 25px;
  margin: 1rem 0;
}

@media screen and (max-width: 900px) {
  .hero img {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 6rem 1rem 5rem 1rem;
    text-align: center;
    flex-direction: column;
  }

  .hero__content {
    max-width: 100%;
    padding: 0rem;
  }
}

@-webkit-keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
    transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
    transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}
.hero__title {
  font-size: 42px;
  line-height: 1.2;
  color: #FFF;
  display: inline-block;
    max-width: 1000px;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__subtitle {
  margin: 1.5rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  opacity: 0.6;
  max-width: 900px;
  display: inline-block;
}

.hero__image {
  flex: 1;
  text-align: right;
}

.hero__image img {
  width: 100%;
  max-width: 600px;
  opacity: 0.9;
}

/* SECTIONS */
.section {
  padding: 1rem 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

.section-hero {
  text-align: center;
  padding: 3rem 0rem;
}

.section.legal-section {
  padding: 6rem 6rem;
}

.section__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 36px;
  color: #2755CA;
}

.section__title span {
  color: var(--color-primary);
}

.services .section__title {
  color: #121212;
}

/* SERVICES GRID */
.services__grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
  width: 100%;
  text-align: center;
  gap: 1.6rem;
}

.service {
  text-align: left;
  width: 100%;
  vertical-align: top;
  padding: 1rem;
   color: #FFF;
  border-radius: 24px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.service.service-2 {
  width: 60%;
}
#services {
  text-align: left;
  background: #FFF;
  background-color: #FFF;
  border-radius: 6px;
  color: #121212;
  padding: 6rem 0;
}
#how-it-works .section__title {
  color: #121212;
}

.service .service__icon {
  background-color: rgba(255, 255, 255, 0.06);
  padding: 0.75rem;
  border-radius: 6px;
  display: block;
  width: 55px;
}

img.service-image {
  width: 50%;
  display: inline-block;
}

.services-right-image {
  display: inline-block;
  width: 41%;
  float: right;
}
.services-right-image img {
  border-radius: 20px;
}

.services .section {
  max-width: 1300px;
}

.service__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.6rem;
  color: #121212;
  text-align: center;
}
.service__list {
    list-style: none;           /* отключаем стандартный bullet */
    font-size: 0.95rem;
    display: inline-block;
    color: #121212;
    opacity: 0.6;
    padding: 0;
    margin: 0;
}

#services img {
  margin-bottom: 1rem;
  border-radius: 25px;
}

.service__list li {
    position: relative;
    padding-left: 18px;        
    margin-bottom: 8px;     
    line-height: 1.45;    
}

.service__list li::before {
    content: "•";  
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.8;
}
.service-text-block {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.service:not(:first-child) .service__icon {
  flex-shrink: 0;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .section.legal-section {
  padding: 3rem 1rem;
}
  #services {
    padding: 1rem 0;
}
  .services__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service {
    width: 100%;
    margin: 0.8rem 0;
    text-align: left;
  }

  .service.service-2 {
    width: 100%;
  }

  img.service-image {
    width: 100%;
  }

  .service-text-block {
    width: 100%;
    text-align: center;
  }
  .service__icon {
    display: block;
    margin: 0 auto;
  }
  .service__icon img,
  .service__icon svg {
    width: 50px;
    height: 50px;
    display: inline-block;
  }
  .service__title {
    text-align: left;
  }
  .service__list {
    text-align: left;
    width: 100%;
  }
}

/* HOW IT WORKS */
.how-it-works-flex {
  display: flex;
  justify-content: center;
}
.how-it-works-img-section img {
  border-radius: 20px;
  width: 100%;
  height: auto;
    object-fit: contain;
    max-height: 760px;
}
.how-it-works {
  padding: 6rem 0;
  background: #2755CA;
  margin: 2rem;
  border-radius: 60px;
}
.how-it-works__steps {
  display: flex;
  justify-content: space-between;
  gap: 0rem;
  flex-wrap: wrap;
      flex-direction: column;
      margin-left: 3rem;
          max-width: 46%;
}

.how-it-works-img-section {
  display: flex;
  flex-direction: column;
  max-height: 760px;
}

.step-item {
  text-align: left;
  flex: 1;
  min-width: 156px;
  padding: 1rem;
  vertical-align: top;
  border-radius: 0px;
  border: solid 1px RGBA(36, 36, 36, 0.1);
  border-radius: 20px;
  background-color: #FFF;
  margin: 0.5rem;
}

#how-it-works .section__title {
  color: #FFF;
  text-align: center;
}

#why-choose .section__title {
  color: #FFF;
  text-align: center;
}

#reviews .section__title {
  color: #FFF;
}

.how-it-works .section {
}

.step-item img {
  padding: 1rem;
  background-color: #2755CA;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: inline-block;
  border: solid 1px RGBA(36, 36, 36, 0.1);
}

.step-item__title {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-item__desc {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* WHY CHOOSE */
.why-choose {
  color: #FFF;
  background: url(../img/why.jpg) no-repeat center center/cover;
  padding: 6rem 0;
}

.why-choose__grid_div {
  display: grid;
  justify-content: center;
}

.why-choose__grid {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
  width: 100%;
  vertical-align: top;
  position: relative;
  gap: 2rem;
  max-width: 1100px;
}

.why-choose-left-image {
  text-align: left;
  display: inline-block;
  width: 46%;
}
.why-choose-left-image img {
  border-radius: 20px;
}

.feature {
  padding: 1rem 1rem;
  text-align: left;
  color: #121212;
  border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05), 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.feature__title {
  font-weight: 600;
  color: #FFF;
}
.feature img {
  display: inline-block;
  padding: 1rem;
  border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.feature__icon img,
.feature__icon svg {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.feature__title {
  margin-bottom: 0.5rem;
}

.feature__desc {
  font-size: 0.95rem;
  color: #FFF;
}

#about {
  text-align: center;
  padding: 4rem 1rem;
  color: #fff;
}
#about .section {
background-image: url("../img/about_us.jpg");
  background-color: RGBA(36, 36, 36, 0.026);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 36px;
  display: inline-block;
  min-width: 1160px;
  padding: 2rem 1rem;
}
#about .section .btn--primary {
  background: #FFF;
  color: #2755CA;
}
#about h2 {
  color: #fff;
  text-align: center;
  margin-left: 2rem;
}

/* ABOUT SECTION */

.about__text {
  text-align: center;
  max-width: 700px;
  display: inline-block;
}

@media screen and (max-width: 1200px) {
    .hero {
    border-radius: 0 0 60px 60px;
}
  #about .section {
  min-width: 100%;
  width: 100%;
}
}

@media screen and (max-width: 768px) {
  .section-hero {
    text-align: left;
    width: 100%;
    padding: 0rem 0rem;
  }
  .about__text {
    text-align: center;
    padding: 1rem;
  }
  #about {
    padding: 2rem 1rem;
    text-align: center;
  }
  #about h2 {
    text-align: center;
    margin-left: 0rem;
  }
}

.about__image {
  flex: 1;
  text-align: right;
}

.about__image img {
  max-width: 100%;
  border-radius: 0.5rem;
}

/* REVIEWS SLIDER */
.reviews__container {
  position: relative;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
}

.reviews__slide {
  flex: 0 0 100%;
  padding: 2rem;
  text-align: center;
}

.reviews__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.reviews__name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.reviews__position {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.reviews__text {
  font-style: italic;
  color: #444;
}

.reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 1);
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 2;
}
.reviews__nav:hover {
  background: rgba(0, 0, 0, 0.6);
}

.reviews__nav--prev {
  left: 1rem;
}

.reviews__nav--next {
  right: 1rem;
}

@media screen and (max-width: 768px) {
    .how-it-works {
    padding: 1rem 0;
}
.how-it-works-flex {
    display: block;
}
.how-it-works-img-section img {
    width: 70%;
    display: inline-block;
}
.how-it-works-img-section {
    display: block;
    text-align: center;
}
    .how-it-works__steps {
        display: block;
        margin: 0;
    }
  .reviews__slide {
    padding: 0rem;
  }

  .reviews__avatar {
    width: 60px;
    height: 60px;
  }

  .reviews__name {
    font-size: 1.1rem;
  }

  .reviews__position {
    font-size: 0.85rem;
  }

  .reviews__text {
    font-size: 0.95rem;
  }
}

/* CONTACT SECTION */
.contact {
  background: #fff;
  color: #121212;
}

.contact.contact-page .section {
  padding: 3rem 1rem 0rem 1rem;
}

.contact .section__title {
  color: #121212;
}

.contact__wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact__info {
  display: flex;
  width: 100%;
  gap: 2rem;
}

.contact__info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

.contact__info a {
  color: inherit;
  font-weight: 500;
}

.contact__info img {
  width: 30px;
}

.contact__form {
  display: inline-block;
  width: 100%;
}

.input {
  width: 98%;
  padding: 1.25rem 1rem;
  background: rgba(36, 36, 36, 0.02);
  border-radius: 50%;
  color: #121212;
  border: solid 1px rgba(36, 36, 36, 0.1);
  transition: border-color var(--transition-fast);
  font-family: "Montserrat", sans-serif;
  margin: 0.3rem;
}
.input.input--textarea {
  min-height: 142px;
  vertical-align: top;
}
.consent-group {
  padding: 0.6rem;
  font-size: 13px;
  max-width: 1121212px;
  margin-left: 4rem;
  text-align: left;
}
#contact {
  border-bottom: solid 1px rgba(36, 36, 36, 0.1);
  background: #FFF;
}
.input-group {
  display: inline-block;
  width: 60%;
  margin: 0.5rem;
  padding: 1rem;
  vertical-align: top;
}
textarea {
  display: inline-block;
  width: 44%;
}

.input:focus {
  border-color: var(--color-primary);
  outline: none;
}
#contact-form-container {
  text-align: center;
  width: 100%;
}

/* FOOTER */
.footer {
  background: #fff;
  color: #121212;
  padding: 2rem;
}

.submit-btn-wrapper {
  display: block;
  width: 100%;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__container p.footer-logo {
  color: #959595;
  display: inline-block;
  vertical-align: super;
  font-weight: 700;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.footer__container p.footer-logo span {
  color: #2755CA;
}

.nav--footer .nav__list {
  display: flex;
  gap: 1.5rem;
}

.nav--footer .nav__link {
  color: inherit;
  font-size: 0.9rem;
}

.footer__copy {
  font-size: 0.9rem;
  margin-bottom: 0;
  text-align: center;
}

.footer__info {
  display: block;
  width: 100%;
}

.contact__wrapper .btn.btn--primary {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1rem;
  width: 160px;
  float: left;
  left: 4rem;
}
.contact.contact-page {
  padding: 4rem 1rem 6rem 1rem;
}

@media screen and (max-width: 768px) {
  .contact__wrapper .btn.btn--primary {
    left: 0rem;
  }
  .consent-group {
    margin-left: 0rem;
  }
  .contact.contact-page .section {
    padding: 3rem 1rem 0rem 1rem;
  }
  .input-group {
    width: 100%;
    padding: 0.3rem;
    margin-bottom: 0rem;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
  .services-right-image {
    display: inline-block;
    max-width: 380px;
    width: auto;
    float: none;
  }
}

.hidden {
  display: none;
}

.thank-you {
  text-align: center;
  padding: 2rem;
}

.check-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scale(0);
  animation: scaleUp 0.4s ease-in-out forwards;
}

.check-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: strokeCircle 0.6s ease-in-out forwards;
}

.check-path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.3s 0.6s ease-in-out forwards;
}

@keyframes strokeCircle {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes strokeCheck {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes scaleUp {
  to {
    transform: scale(1);
  }
}

.thank-you h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.thank-you p {
  color: #666;
}
.hero.legal-page {
  background-size: cover;
  background-position: center;
  color: #121212;
}

.legal-section h2 {
  font-size: 26px;
}

@media screen and (max-width: 768px) {
  .legal-section h2 {
    font-size: 1.55rem;
  }
  .hero.legal-page {
    padding: 8rem 0rem 0rem 0rem;
    background-size: cover;
  }
  .section__title {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-size: 26px;
  }
  .contact.contact-page {
    padding: 3rem 0rem 1rem 0rem;
    height: auto;
  }
  .contact__form {
    width: 100%;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
  }
  .contact__info {
    width: 100%;
  }

  .contact__wrapper {
    display: block;
  }
  .nav--footer .nav__list {
    flex-direction: column;
    align-items: center;
  }

  .nav--footer .nav__link {
    margin-bottom: 0.5rem;
  }
  .footer__copy {
    text-align: center;
    margin-top: 1rem;
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .contact__info {
    gap: 0rem;
    flex-direction: column;
}
  .services__grid,
  .why-choose__grid {
    margin-left: 0;
  }

  .why-choose-left-image {
    max-width: 380px;
    width: auto;
  }

  .feature {
    margin: 1rem 0;
    padding: 0.7rem 1rem;
    text-align: left;
    color: #121212;
  }

  .about__content {
    flex-direction: column;
    text-align: center;
  }

  .about__image {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero img {
    border-radius: 15px;
    margin: 0.5rem 0;
}
  .why-choose {
    padding: 2rem 0;
}
  .services__grid,
  .why-choose__grid {
    width: 100%;
    gap: 0;
    display: block;
  }
  .hero__title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero__subtitle {
    margin: 0.5rem 0;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 6px;
  }
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 14px;
  }
  .nav--desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 6rem 0rem 0rem 0rem;
  }

  .hero__image {
    margin-top: 2rem;
  }

  .how-it-works__steps {
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .header__container,
  .section {
    padding: 0.5rem 1rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .btn--primary {
    text-align: center;
    max-width: 166px;
  }
  a.mobile-menu__link.btn.btn--primary {
    max-width: 238px;
  }
  #home .btn--primary {
    padding: 0.75rem 0.6rem;
    font-size: 16px;
  }
  #hamburger-fixed span {
    background: #121212;
  }
  .step-item {
    padding: 1rem;
  }
}

#thank-you-container {
  width: 100%;
}

.section.centered {
  text-align: center;
  padding: 8rem 1rem;
}
:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --brand: #2755CA;
  --brand-press: #2755CA;
  --ring: rgba(50, 37, 235, 0.15);
  --radius: 22px;
}
.card {
  width: min(720px, 100%);
  background: var(--card);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(2, 8, 23, 0.1), 0 6px 20px rgba(2, 8, 23, 0.06);
  padding: 48px 38px;
  position: relative;
  isolation: isolate;
  text-align: center;
  display: inline-block;
}
.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #0b1220;
  background: #eef2ff;
  margin: 0 auto 16px;
  opacity: 0.9;
}
h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 8px 0 12px;
  text-align: center;
}
.lead {
  color: var(--muted);
  text-align: center;
  max-width: 50ch;
  margin: 0 auto 22px;
}
.field {
  margin: 6px 0 18px;
  position: relative;
}
.input {
  width: 99%;
  padding: 16px 16px 16px 36px;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  background: #fff;
  font-size: 16px;
  outline: none;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 6px var(--ring);
}
.icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #94a3b8;
  pointer-events: none;
}
.btn.unsubscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 30px rgba(40, 37, 235, 0.25);
  transition: transform 0.05s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
  background: var(--brand-press);
  box-shadow: 0 8px 22px rgba(202, 37, 235, 0.28);
}
.fineprint {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}
.brand {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #475569;
  margin-top: 6px;
}
.hidden {
  display: none !important;
}
@media (max-width: 520px) {
  .card {
    padding: 34px 20px;
    border-radius: 22px;
  }
  h1 {
    font-size: 34px;
  }
}

li::marker {
  display: none;
}

.hero__content h1 {
  text-align: center;
  color: #FFF;
}
.hero__content p {
  text-align: center;
  color: #FFF;
}

.ibx-login {
  --ibx-bg: #f4f6f8;
  --ibx-card: #fff;
  --ibx-text: #0f172a;
  --ibx-muted: #64748b;
  --ibx-brand: #2755CA;
  --ibx-brand-press: #2755CA;
  --ibx-danger: #e11d48;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(
      1200px 800px at 10% 15%,
      #ffffff 0%,
      #f8fafc 55%,
      #eef2f7 100%
    ),
    var(--ibx-bg);
  color: var(--ibx-text);
  font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
}
.ibx-login a {
  color: inherit;
  text-decoration: none;
}

/* Header (scoped) */
.ibx-login-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.ibx-login-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ibx-login-brand {
  font-weight: 800;
  letter-spacing: 0.3px;
}
.ibx-login-nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
}
.ibx-login-nav a {
  padding: 8px 10px;
  border-radius: 10px;
}
.ibx-login-nav a:hover {
  background: #f1f5f9;
}
.ibx-login-link {
  background: var(--ibx-brand);
  color: #fff;
}
.ibx-login-link:hover {
  background: var(--ibx-brand-press);
}

/* Card */
.ibx-login-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 36px 20px;
}
.ibx-login-card {
  width: min(460px, 100%);
  background: var(--ibx-card);
  border-radius: 22px;
  padding: 34px 26px;
  box-shadow: 0 30px 80px rgba(2, 8, 23, 0.1), 0 6px 20px rgba(2, 8, 23, 0.06);
}
.ibx-login-title {
  font-size: 30px;
  margin: 0 0 4px;
}
.ibx-login-lead {
  color: var(--ibx-muted);
  margin: 0 0 20px;
}

/* Form */
.ibx-login-label {
  display: block;
  font-weight: 600;
  margin: 16px 0 8px;
}
.ibx-login-input {
  width: 100%;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 16px 16px 45px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ibx-login-input:focus {
  border-color: var(--ibx-brand);
  box-shadow: 0 0 0 6px rgba(50, 37, 235, 0.15);
}
.ibx-login-btn {
  width: 100%;
  margin-top: 16px;
  padding: 14px 16px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: #2755CA;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 30px rgba(80, 37, 235, 0.25);
}
.ibx-login-btn:active {
  transform: translateY(1px);
  background: #143e99;
}

#contact.contact.index-contact-page .consent-group {
  margin-left: 0;
}

#contact.contact.index-contact-page .contact__wrapper .btn.btn--primary {
  left: 0;
}

.ibx-login-error {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  font-weight: 600;
}
.ibx-login-error.is-visible {
  display: block;
}

.ibx-login-aux {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 14px;
}
.ibx-login-aux a {
  color: var(--ibx-brand);
}

@media (max-width: 520px) {
  .ibx-login-wrap {
    gap: 12px;
  }
  .ibx-login-nav a {
    padding: 8px 8px;
  }
}
