@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.footer {
  background: linear-gradient(180deg, #0b1220, #020617);
  color: #cbd5f5;
  font-size: 16px;
  padding-top: 4rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.footer__container {
  margin: 0 auto;
  padding: 0 1rem 1.5rem;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 3rem;
  }
}
.footer__brand {
  max-width: 320px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.footer__logoIcon {
  width: 26px;
  height: 26px;
  background: #2563eb;
  border-radius: 6px;
}
.footer__logoText {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: #ffffff;
}
.footer__desc {
  margin: 0.8rem 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
}
.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
}
.footer__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.footer__list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer__list a:hover {
  color: #ffffff;
}
.footer__contact {
  max-width: 280px;
}
.footer__contactList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: #94a3b8;
}
.footer__contactList li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.55;
}
.footer__icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
}

.is-hidden {
  display: none !important;
}

.is-rotated {
  transform: rotate(180deg);
}

.header {
  position: relative;
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
}
.brand__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.brand__title {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}

.nav__link {
  text-decoration: none;
  color: #0f172a;
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: #2563eb;
}

.nav__dropdown {
  position: relative;
}

.dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  color: #0f172a;
  padding: 0;
}
.dropdown__toggle:focus {
  outline: none;
}

.dropdown__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.dropdown__menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 220px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px -35px rgba(15, 23, 42, 0.7);
  border: 1px solid #eef2f7;
  z-index: 30;
}

.dropdown__item {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #1f2937;
  transition: background 0.2s ease;
}
.dropdown__item:hover {
  background: #dbeafe;
}

.header__burger {
  display: block;
}
@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}

.burger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #0f172a;
}
.burger:focus {
  outline: none;
}
.burger__icon {
  width: 24px;
  height: 24px;
}

.btn-full--mobile {
  margin-top: 0.75rem;
}

.mobile {
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 138, 0.95);
  z-index: 50;
}
.mobile__top {
  padding: 1.25rem;
  display: flex;
  justify-content: flex-end;
}
.mobile__close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
}
.mobile__closeIcon {
  width: 24px;
  height: 24px;
}
.mobile__content {
  padding: 0 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
}
.mobile__link {
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}
.mobile__dropdown {
  width: 100%;
  max-width: 360px;
}
.mobile__dropdownToggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0;
}
.mobile__dropdownToggle:focus {
  outline: none;
}
.mobile__dropdownArrow {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.mobile__dropdownMenu {
  margin-top: 0.75rem;
  background: #1e40af;
  border-radius: 12px;
  overflow: hidden;
}
.mobile__dropdownItem {
  display: block;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease;
}
.mobile__dropdownItem:hover {
  background: #1d4ed8;
}

.firsthome {
  background: #f8fafc;
  padding: 4rem 1rem;
}
@media (min-width: 1024px) {
  .firsthome {
    padding: 6rem 1rem;
  }
}
.firsthome__container {
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .firsthome__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.firsthome__title {
  margin-top: 30px;
  font-size: 16px;
  color: #0f172a;
}
@media (min-width: 640px) {
  .firsthome__title {
    font-size: 16px;
  }
}
.firsthome__text {
  margin-top: 30px;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}
.firsthome__actions {
  margin-top: 30px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.firsthome__stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.firsthome__stats .stat strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 15px;
}
.firsthome__stats .stat span {
  font-size: 0.9rem;
  color: #64748b;
}
.firsthome__image {
  margin-left: auto;
}
@media (max-width: 1022px) {
  .firsthome__image {
    margin-left: unset;
  }
}
.firsthome__image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1022px) {
  .firsthome__image img {
    height: 400px;
  }
}

.secondhome {
  background: #ffffff;
  padding: 5rem 1rem;
}
.secondhome__container {
  margin: 0 auto;
}
.secondhome__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.secondhome__title {
  margin-top: 30px;
  font-size: 16px;
  color: #0f172a;
}
@media (min-width: 768px) {
  .secondhome__title {
    font-size: 16px;
  }
}
.secondhome__subtitle {
  margin-top: 1rem;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}
.secondhome__features {
  display: grid;
  gap: 2.5rem;
  margin-top: 100px;
}
@media (min-width: 768px) {
  .secondhome__features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .secondhome__features {
    grid-template-columns: repeat(4, 1fr);
  }
}
.secondhome .feature {
  text-align: center;
  padding: 0 1rem;
}
.secondhome .feature__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: #e0edff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.secondhome .feature h3 {
  font-size: 16px;
  color: #0f172a;
}
.secondhome .feature p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}
.secondhome__highlight {
  margin-top: 4.5rem;
  background: linear-gradient(135deg, #2563eb, #2a57ed);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  color: #ffffff;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .secondhome__highlight {
    grid-template-columns: repeat(3, 1fr);
  }
}
.secondhome .highlight {
  text-align: center;
}
.secondhome .highlight h4 {
  font-size: 16px;
  margin-bottom: 0.5rem;
}
.secondhome .highlight p {
  font-size: 16px;
  color: #e0e7ff;
  line-height: 1.6;
}

.pricing {
  background: #f8fafc;
  padding: 1rem 0 0 1rem;
  font-size: 16px;
}
.pricing__container {
  margin: 0 auto;
}
.pricing__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.25rem;
}
.pricing__title {
  margin-top: 30px;
  font-size: 16px;
  color: #0f172a;
}
@media (min-width: 768px) {
  .pricing__title {
    font-size: 16px;
  }
}
.pricing__subtitle {
  margin-top: 20px;
  color: #475569;
  line-height: 1.7;
  font-size: 16px;
}
.pricing__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.pricing__note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
}

.price-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 20px 50px -35px rgba(107, 112, 124, 0.35);
  border: 1px solid #eef2f7;
  display: flex;
  flex-direction: column;
}
.price-card__head {
  margin-bottom: 1.25rem;
}
.price-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}
.price-card__desc {
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 16px;
  line-height: 1.5;
}
.price-card__price {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: #2563eb;
}
.price-card__amount {
  font-size: 16px;
  line-height: 1;
}
.price-card__currency {
  font-size: 16px;
}
.price-card__unit {
  font-size: 0.95rem;
  color: #64748b;
  margin-left: 0.25rem;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: #475569;
  font-size: 16px;
}
.price-card__list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.5;
}
.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 700;
}
.price-card__list li.is-save {
  color: #2563eb;
  font-weight: 600;
}
.price-card__cta {
  margin-top: 1.6rem;
  display: flex;
  text-align: center;
}
.price-card__cta .btn {
  width: 100%;
}
.price-card--popular {
  box-shadow: 0 30px 70px -40px rgba(168, 170, 186, 0.55);
  transform: translateY(-6px);
}
@media (max-width: 1023px) {
  .price-card--popular {
    transform: none;
  }
}
.price-card__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 14px 30px -18px rgba(37, 99, 235, 0.7);
}

.method {
  background: #ffffff;
  font-size: 16px;
  padding-top: 200px;
}
.method__container {
  margin: 0 auto;
}
.method__header {
  text-align: center;
  margin: 0 auto 3.5rem;
}
.method__title {
  margin-top: 40px;
  font-size: 16px;
  color: #0f172a;
}
@media (min-width: 768px) {
  .method__title {
    font-size: 16px;
  }
}
.method__subtitle {
  margin-top: 30px;
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}
.method__timeline {
  position: relative;
  display: grid;
  gap: 2.25rem;
  justify-items: center;
}
@media (min-width: 768px) {
  .method__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 3rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .method__timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
.method__line {
  display: none;
}
@media (min-width: 1024px) {
  .method__line {
    display: block;
    position: absolute;
    left: 8%;
    right: 8%;
    top: 46px;
    height: 2px;
    background: #cfe1ff;
    z-index: 0;
    border-radius: 2px;
  }
}

.step {
  text-align: center;
  max-width: 260px;
  position: relative;
  z-index: 1;
}
.step__visual {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 1.25rem;
}
.step__icon {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  background: #eaf2ff;
  display: grid;
  place-items: center;
  color: #2563eb;
  box-shadow: 0 18px 45px -35px rgba(15, 23, 42, 0.5);
}
.step__icon svg {
  width: 36px;
  height: 36px;
}
.step__number {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px -25px rgba(37, 99, 235, 0.75);
}
.step__title {
  font-size: 1rem;
  color: #0f172a;
}
.step__text {
  margin-top: 0.6rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.duration {
  background: #ffffff;
  padding-top: 60px;
  font-size: 16px;
  padding-bottom: 90px;
}
.duration__container {
  margin: 0 auto;
}
.duration__box {
  background: #eef6ff;
  border-radius: 22px;
  padding: 2.25rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .duration__box {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding: 2.5rem 3rem;
  }
}
.duration__title {
  font-size: 1rem;
  color: #0f172a;
}
.duration__text {
  margin-top: 30px;
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 560px;
}
.duration__list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: #475569;
}
.duration__list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.55;
}
.duration__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2563eb;
  transform: translateY(-50%);
}
.duration__right {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .duration__right {
    justify-content: flex-end;
  }
}
.duration__card {
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 20px 55px -40px rgba(15, 23, 42, 0.45);
  border: 1px solid #eef2f7;
}
.duration__cardTitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.15rem;
}

.progress + .progress {
  margin-top: 1.15rem;
}
.progress__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.progress__label {
  font-size: 0.95rem;
  color: #475569;
}
.progress__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
}
.progress__bar {
  margin-top: 0.55rem;
  height: 8px;
  background: #dbeafe;
  border-radius: 999px;
  overflow: hidden;
}
.progress__fill {
  display: block;
  height: 100%;
  background: #2563eb;
  border-radius: 999px;
}

.cta {
  font-size: 16px;
  margin-block: 100px;
}
.cta__container {
  margin: 0 auto;
  display: grid;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(15, 23, 42, 0.6);
}
@media (min-width: 1024px) {
  .cta__container {
    grid-template-columns: 1fr 1fr;
  }
}
.cta__content {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 1rem 4.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 500px) {
  .cta__content {
    padding: 2rem 2rem;
  }
}
.cta__title {
  font-size: 16px;
}
.cta__text {
  margin-top: 30px;
  line-height: 1.7;
  color: #e0e7ff;
  max-width: 460px;
}
.cta__actions {
  margin-top: 30px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.cta__btn--primary {
  background: #ffffff;
  color: #2563eb;
}
.cta__btn--primary:hover {
  background: #eff6ff;
}
.cta__btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.cta__contact {
  margin-top: 70px;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #e0e7ff;
  flex-wrap: wrap;
}
.cta__image {
  display: none;
}
@media (min-width: 1024px) {
  .cta__image {
    display: block;
  }
}
.cta__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.firstformations {
  background: linear-gradient(135deg, #155DFC 0%, #193CB8 100%);
  padding: 4rem 1rem;
}
@media (min-width: 1024px) {
  .firstformations {
    padding: 6rem 1rem;
  }
}
.firstformations__container {
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .firstformations__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.firstformations__title {
  margin-top: 50px;
  font-size: 16px;
  color: white;
}
@media (min-width: 640px) {
  .firstformations__title {
    font-size: 16px;
  }
}
.firstformations__text {
  margin-top: 30px;
  font-size: 16px;
  color: white;
  line-height: 1.7;
}
.firstformations__actions {
  margin-top: 30px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.firstformations__image {
  margin-left: auto;
}
@media (max-width: 1022px) {
  .firstformations__image {
    margin-left: unset;
  }
}
.firstformations__image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1022px) {
  .firstformations__image img {
    height: 400px;
  }
}

.choose {
  background: #ffffff;
  padding: 5rem 1rem;
  font-size: 16px;
}
.choose__container {
  margin: 0 auto;
}
.choose__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.choose__title {
  font-size: 20px;
  color: #0f172a;
}
.choose__subtitle {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}
.choose__grid {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .choose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

.choose-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  box-shadow: 0 24px 60px -45px rgba(15, 23, 42, 0.55);
  display: flex;
  flex-direction: column;
}
.choose-card__media {
  position: relative;
  height: 170px;
}
@media (min-width: 640px) {
  .choose-card__media {
    height: 210px;
  }
}
.choose-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.choose-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0));
  display: grid;
  align-items: flex-end;
  padding: 6rem 1.1rem;
}
.choose-card__icon {
  width: 20px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
}
.choose-card__icon svg {
  width: 22px;
  height: 22px;
}
.choose-card__overlayText {
  color: #ffffff;
}
.choose-card__overlayText h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.choose-card__overlayText p {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.choose-card__body {
  padding: 1.3rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .choose-card__body {
    padding: 1.5rem 1.6rem 1.6rem;
  }
}
.choose-card__desc {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}
.choose-card__meta {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 520px) {
  .choose-card__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.choose-card__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  color: #475569;
  margin-top: 15px;
  margin-bottom: 20px;
}
.choose-card__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.5;
}
.choose-card__list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.meta-box {
  background: #f1f7ff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid #e6f0ff;
}
.meta-box__label {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
}
.meta-box__value {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: #2563eb;
}

.pack {
  padding: 3.5rem 1rem;
  font-size: 16px;
  background: #ffffff;
}
.pack__container {
  margin: 0 auto;
}
.pack__box {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: 22px;
  padding: 2.75rem 1.5rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 30px 80px -55px rgba(15, 23, 42, 0.7);
}
@media (min-width: 768px) {
  .pack__box {
    padding: 3.25rem 2.25rem;
  }
}
.pack__title {
  font-size: 16px;
  margin: 0;
}
.pack__text {
  margin: 0.9rem auto 0;
  max-width: 720px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.pack__text br {
  display: none;
}
@media (min-width: 768px) {
  .pack__text br {
    display: inline;
  }
}
.pack__badges {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pack-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  border: 1px solid transparent;
  margin-bottom: 40px;
}
.pack-badge--gray {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}
.pack-badge--white {
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
}
.pack-badge--green {
  background: #22c55e;
  color: #ffffff;
}

.why {
  background: #f8fafc;
  padding: 0 1rem 6rem 0;
  font-size: 16px;
}
.why__container {
  margin: 0 auto;
}
.why__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.why__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
}
.why__subtitle {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}
.why__grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .why__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.6rem;
  text-align: center;
  border: 1px solid #eef2f7;
  box-shadow: 0 20px 50px -40px rgba(15, 23, 42, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eaf2ff;
  display: grid;
  place-items: center;
  color: #2563eb;
  margin: 0 auto 1.1rem;
}
.why-card__icon svg {
  width: 26px;
  height: 26px;
}
.why-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}
.why-card__text {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.firstfluvial {
  background: linear-gradient(135deg, #155DFC 0%, #193CB8 100%);
  padding: 4rem 1rem;
}
@media (min-width: 1024px) {
  .firstfluvial {
    padding: 6rem 1rem;
  }
}
.firstfluvial__container {
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .firstfluvial__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.firstfluvial__link {
  color: #BEDBFF;
}
.firstfluvial__title {
  margin-top: 30px;
  font-size: 16px;
  color: white;
}
@media (min-width: 640px) {
  .firstfluvial__title {
    font-size: 16px;
  }
}
.firstfluvial__text {
  margin-top: 30px;
  font-size: 16px;
  color: white;
  line-height: 1.7;
}
.firstfluvial__actions {
  margin-top: 30px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.firstfluvial__stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.firstfluvial__stats .stat strong {
  display: block;
  font-size: 16px;
  color: white;
  margin-bottom: 15px;
}
.firstfluvial__stats .stat span {
  font-size: 0.9rem;
  color: white;
}
.firstfluvial__image {
  margin-left: auto;
}
@media (max-width: 1022px) {
  .firstfluvial__image {
    margin-left: unset;
  }
}
.firstfluvial__image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
@media (max-width: 1022px) {
  .firstfluvial__image img {
    height: 400px;
  }
}

.program {
  background: #ffffff;
  padding: 4.5rem 1rem;
  font-size: 16px;
}
.program__container {
  margin: 0 auto;
}
.program__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.program__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
}
.program__subtitle {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}
.program__grid {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .program__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

.program-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  border: 1px solid #eef2f7;
  box-shadow: 0 22px 55px -45px rgba(15, 23, 42, 0.55);
}
@media (min-width: 640px) {
  .program-card {
    padding: 1.85rem 1.8rem;
  }
}
.program-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.program-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #eaf2ff;
  display: grid;
  place-items: center;
  color: #2563eb;
  flex-shrink: 0;
}
.program-card__titles {
  display: grid;
  gap: 0.15rem;
}
.program-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}
.program-card__meta {
  font-size: 0.9rem;
  color: #45556C;
  font-weight: 500;
  margin-top: 10px;
}
.program-card__note {
  margin-top: 1.2rem;
  background: #eef6ff;
  border: 1px solid #e6f0ff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.95rem;
}
.program-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.5;
}
.program-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #2563eb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.infos {
  background: #f8fafc;
  padding: 4.5rem 1rem;
  font-size: 16px;
}
.infos__container {
  margin: 0 auto;
}
.infos__grid {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .infos__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.infos-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.6rem;
  border: 1px solid #eef2f7;
  box-shadow: 0 22px 55px -45px rgba(15, 23, 42, 0.07);
}
.infos-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eaf2ff;
  color: #2563eb;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.infos-card__title {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 1.1rem;
}

.infos-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.95rem;
  text-align: left;
}
.infos-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  line-height: 1.55;
}
.infos-list li::before {
  content: "";
  margin-top: 0.45em;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #2563eb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.infos-list-bis {
  display: grid;
  margin-top: 30px;
}
.infos-list-bis h4 {
  margin-bottom: 10px;
}
.infos-list-bis p {
  color: #45556C;
  margin-bottom: 20px;
}

.benefits {
  background: #ffffff;
  padding: 6.5rem 1rem;
  font-size: 16px;
}
.benefits__container {
  margin: 0 auto;
}
.benefits__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.benefits__content {
  max-width: 520px;
}
.benefits__lead {
  margin: 2rem 0 1.25rem;
  font-size: 0.95rem;
  color: #475569;
}
.benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}
.benefits__media {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .benefits__media {
    justify-content: flex-end;
  }
}
.benefits__media img {
  width: 100%;
  max-width: 520px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 75px -55px rgba(15, 23, 42, 0.7);
}
@media (min-width: 640px) {
  .benefits__media img {
    height: 360px;
  }
}
@media (min-width: 1024px) {
  .benefits__media img {
    height: 380px;
  }
}
.benefits__mediacotier {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .benefits__mediacotier {
    justify-content: flex-start;
  }
}
.benefits__mediacotier img {
  width: 100%;
  max-width: 520px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 75px -55px rgba(15, 23, 42, 0.7);
}
@media (min-width: 640px) {
  .benefits__mediacotier img {
    height: 360px;
  }
}
@media (min-width: 1024px) {
  .benefits__mediacotier img {
    height: 380px;
  }
}
.benefits__info {
  margin-top: 1.4rem;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.benefit__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #2563eb;
  margin-top: 0.3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}
.benefit__title {
  margin: 0;
  font-size: 0.98rem;
  color: #0f172a;
  line-height: 1.35;
}
.benefit__text {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
}

.info {
  background: #eef6ff;
  border: 1px solid #e6f0ff;
  border-radius: 14px;
  padding: 1rem 1rem 1rem 1.1rem;
  position: relative;
}
.info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #2563eb;
  border-radius: 14px 0 0 14px;
}
.info__head {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.info__title {
  font-size: 0.95rem;
  color: #0f172a;
}
.info__text {
  margin: 0.6rem 0 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 520px;
}

.mini-cta {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 7rem 1rem;
  font-size: 16px;
}
.mini-cta__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}
.mini-cta__title {
  margin: 0;
  font-size: 1.05rem;
}
.mini-cta__text {
  margin: 2rem auto 0;
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.mini-cta__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.extension {
  background: white;
  padding: 3.75rem 1rem;
  font-size: 16px;
  color: #ffffff;
}
.extension__container {
  margin: 0 auto;
}
.extension__grid {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: 22px;
  padding: 2.5rem 1.75rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .extension__grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    padding: 3rem 3rem;
  }
}
.extension__title {
  margin: 0;
  font-size: 1.15rem;
}
.extension__text {
  margin-top: 0.85rem;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.extension__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.extension__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
}
.extension__list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}
.extension__price {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .extension__price {
    justify-content: flex-end;
  }
}

.price-box {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.75rem 1.75rem;
  max-width: 360px;
  width: 100%;
  backdrop-filter: blur(4px);
}
.price-box__label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.price-box__amount {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
}
.price-box__text {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.auth {
  min-height: calc(100vh - 0px);
  display: grid;
  place-items: center;
  padding: 4rem 1rem;
  font-size: 16px;
  background: linear-gradient(135deg, #f8fafc, #eef6ff);
}
.auth__container {
  width: 100%;
  max-width: 520px;
}
.auth__card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #eef2f7;
  box-shadow: 0 30px 80px -60px rgba(15, 23, 42, 0.7);
  padding: 2rem 1.6rem;
}
@media (min-width: 640px) {
  .auth__card {
    padding: 2.25rem 2.1rem;
  }
}
.auth__head {
  margin-bottom: 1.4rem;
}
.auth__brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.auth__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: #eaf2ff;
  padding: 0.4rem;
}
.auth__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
}
.auth__subtitle {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}
.auth__alert {
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 1rem 0 1.2rem;
}
.auth__alert--success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #065f46;
}
.auth__form {
  display: grid;
  gap: 1.1rem;
}
.auth__field {
  display: grid;
  gap: 0.45rem;
}
.auth__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}
.auth__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.auth__input::placeholder {
  color: #94a3b8;
}
.auth__input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}
.auth__input.is-invalid {
  border-color: #fca5a5;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.auth__error {
  font-size: 0.9rem;
  color: #dc2626;
  line-height: 1.4;
}
.auth__btn {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.05s ease;
}
.auth__btn:hover {
  background: #1e40af;
}
.auth__btn:active {
  transform: translateY(1px);
}
.auth__hint {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  line-height: 1.5;
}
.auth__footer {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

.dash {
  background: linear-gradient(135deg, #f8fafc, #eef6ff);
  padding: 3.5rem 1rem;
  font-size: 16px;
  min-height: calc(100vh - 0px);
}
.dash__container {
  margin: 0 auto;
}
.dash__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.dash__title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
}
.dash__sub {
  margin: 0.45rem 0 0;
  color: #64748b;
  font-size: 0.95rem;
}
.dash__sub strong {
  color: #0f172a;
  font-weight: 600;
}
.dash__logout {
  border: 1px solid #dbeafe;
  background: #ffffff;
  color: #2563eb;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.dash__logout:hover {
  background: #eff6ff;
}
.dash__alert {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #065f46;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  margin: 1rem 0 1.4rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.dash__grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 900px) {
  .dash__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }
}
.dash__bottom {
  margin-top: 1.8rem;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: 22px;
  padding: 1.8rem 1.6rem;
  color: #ffffff;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .dash__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.dash__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (min-width: 900px) {
  .dash__actions {
    justify-content: flex-end;
  }
}

.dash-card {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  box-shadow: 0 30px 80px -60px rgba(15, 23, 42, 0.7);
  padding: 1.6rem 1.5rem;
  display: grid;
  gap: 1rem;
}
.dash-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.dash-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.dash-card__text {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.dash-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid transparent;
}
.dash-pill--ok {
  background: #ecfdf5;
  color: #065f46;
  border-color: #bbf7d0;
}
.dash-pill--warn {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.dash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.dash-btn--primary {
  background: #2563eb;
  color: #ffffff;
}
.dash-btn--primary:hover {
  background: #1e40af;
}
.dash-btn--ghost {
  background: #eff6ff;
  color: #2563eb;
  border-color: #dbeafe;
}
.dash-btn--ghost:hover {
  background: #dbeafe;
}
.dash-btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.dash-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dash-mini__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.dash-mini__text {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.contact-hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 3.5rem 1rem;
  color: #ffffff;
  font-size: 16px;
}
.contact-hero__container {
  margin: 0 auto;
}
.contact-hero__title {
  margin: 0;
  font-size: 1.6rem;
}
.contact-hero__text {
  margin: 0.8rem 0 0;
  max-width: 620px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.contact {
  background: #ffffff;
  padding: 3rem 1rem 4rem;
  font-size: 16px;
}
.contact__container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 360px 1fr;
    gap: 2.25rem;
    align-items: start;
  }
}
.contact__asideTitle {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #0f172a;
}
.contact__items {
  display: grid;
  gap: 0.85rem;
}
.contact__faq {
  margin-top: 1.2rem;
  background: #EFF6FF;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  padding: 1.25rem 1.15rem;
}
.contact__faqTitle {
  margin: 0;
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 600;
}
.contact__faqText {
  margin: 0.55rem 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
}
.contact__faqBtn {
  display: inline-flex;
  text-decoration: none;
  color: #2563eb;
  font-size: 0.95rem;
}

.contact-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1rem;
  display: flex;
  gap: 0.85rem;
}
.contact-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eaf2ff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item__title {
  font-size: 0.92rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-item__text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 30px 80px -60px rgba(15, 23, 42, 0.7);
}
@media (min-width: 640px) {
  .contact-form {
    padding: 1.9rem 1.8rem;
  }
}
.contact-form__title {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  color: #0f172a;
}
.contact-form__form {
  display: grid;
  gap: 1rem;
}
.contact-form__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .contact-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-form__foot {
  margin: 0.25rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.field {
  display: grid;
  gap: 0.45rem;
}
.field__label {
  font-size: 0.9rem;
  color: #0f172a;
}
.field__label span {
  color: #2563eb;
}
.field__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 0.85rem 0.95rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field__input::placeholder {
  color: #94a3b8;
}
.field__input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}
.field__textarea {
  min-height: 140px;
  resize: vertical;
}
.field__select {
  appearance: none;
}

.simple-state {
  min-height: calc(100vh - 0px);
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f8fafc, #eef6ff);
  font-size: 16px;
}
.simple-state__card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #eef2f7;
  box-shadow: 0 30px 80px -60px rgba(15, 23, 42, 0.7);
  padding: 2.2rem 1.6rem;
  text-align: center;
  max-width: 460px;
  width: 100%;
}
.simple-state__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}
.simple-state__text {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}
.simple-state__text strong {
  color: #0f172a;
  font-weight: 700;
}
.simple-state__btn {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}
.simple-state__btn:hover {
  background: #1e40af;
}

.plans-grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 900px) {
  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
  }
}

.plan-card {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 30px 80px -60px rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plan-card.is-active {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}
.plan-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.plan-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}
.plan-card__desc {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}
.plan-card__price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2563eb;
  margin-top: 0.2rem;
}
.plan-card__action {
  margin-top: auto;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #475569;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.55;
}
.plan-features li::before {
  content: "";
  margin-top: 0.45em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #2563eb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  flex-shrink: 0;
}

.dash__back {
  margin-top: 1.8rem;
  display: flex;
  justify-content: flex-start;
}

.reg__status {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.reg__label {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}

.reg__form {
  margin-top: 1.25rem;
  display: grid;
  gap: 1.2rem;
}

.reg-card {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 30px 80px -60px rgba(15, 23, 42, 0.7);
}
.reg-card__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.reg-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}
.reg-card__hint {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 600;
}
.reg-card__row {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .reg-card__row {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
  }
}

.reg__file {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 0.85rem 0.9rem;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}
.reg__file.is-invalid {
  border-color: #fca5a5;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
  background: #fff;
}

.reg__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  color: #2563eb;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  white-space: nowrap;
}
.reg__link:hover {
  background: #dbeafe;
}

.reg__missing {
  font-size: 0.95rem;
  color: #1d4ed8;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  white-space: nowrap;
  text-align: center;
}

.reg__error {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #dc2626;
  line-height: 1.4;
}

.reg__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.btn-full {
  background: #155DFC;
  color: white;
  padding: 13px 30px;
  border: solid 1px #155DFC;
  transition: 300ms;
  cursor: pointer;
  border-radius: 20px;
  text-decoration: none;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.btn-full:hover {
  background: white;
  color: #155DFC;
}

.btn-empty {
  background: white;
  color: #155DFC;
  padding: 13px 30px;
  border-radius: 20px;
  border: solid 1px #155DFC;
  transition: 300ms;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.btn-empty:hover {
  background: #155DFC;
  color: white;
}

.btn-full-white {
  background: #ffffff;
  color: #155DFC;
  padding: 13px 30px;
  border: solid 1px #ffffff;
  transition: 300ms;
  cursor: pointer;
  border-radius: 20px;
  text-decoration: none;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.btn-full-white:hover {
  background: #155DFC;
  color: white;
}

.btn-empty-white {
  background: #155DFC;
  color: white;
  padding: 13px 30px;
  border-radius: 20px;
  border: solid 1px #ffffff;
  transition: 300ms;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.btn-empty-white:hover {
  background: #ffffff;
  color: #155DFC;
}

.badge-white {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
}

.badge-blue {
  background: #DBEAFE;
  color: #2563eb;
  border-radius: 20px;
  padding: 10px 20px;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.main {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
}

.p-all {
  padding-inline: 50px;
}
@media (max-width: 500px) {
  .p-all {
    padding-inline: 20px;
  }
}

.nav__link.is-active,
.dropdown__toggle.is-active {
  color: #155DFC;
}

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