:root {
  --home-ink: #173f42;
  --home-ink-deep: #0d2f31;
  --home-paper: #f7f2e8;
  --home-paper-light: #fffdf8;
  --home-sand: #ddc28e;
  --home-sand-light: #f0dfbd;
  --home-coral: #f66b4e;
  --home-coral-dark: #bd3f2d;
  --home-blue: #b9cdef;
  --home-mint: #b7d8ca;
  --home-lemon: #e5e99a;
  --home-line: rgba(23, 63, 66, 0.18);
  --home-shadow: 0 24px 70px rgba(23, 63, 66, 0.12);
  --home-radius-sm: 18px;
  --home-radius: 30px;
  --home-radius-lg: 46px;
}

html {
  scroll-behavior: smooth;
}

body.home-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--home-paper);
  color: var(--home-ink-deep);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page a {
  color: inherit;
}

.home-page img {
  max-width: 100%;
}

.home-page :focus-visible {
  outline: 3px solid var(--home-coral);
  outline-offset: 4px;
}

.home-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.home-main {
  width: 100%;
  margin: 0;
}

.home-main > .alert {
  width: min(1240px, calc(100% - 40px));
  margin: 18px auto 0;
  border-radius: 14px;
}

.home-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--home-paper-light);
  color: var(--home-ink-deep);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.home-skip-link:focus {
  transform: translateY(0);
}

.home-announcement {
  min-height: 38px;
  background: var(--home-ink-deep);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  text-align: center;
}

.home-announcement__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--home-lemon);
  box-shadow: 0 0 0 4px rgba(229, 233, 154, 0.15);
}

.home-announcement a {
  color: var(--home-sand-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.home-page > .navbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  min-height: 106px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(23, 63, 66, 0.1);
  background: rgba(252, 248, 240, 0.97) !important;
  box-shadow: none !important;
  backdrop-filter: blur(15px);
}

.home-page > .navbar .container {
  width: min(1240px, calc(100% - 40px));
  max-width: none;
  padding: 0;
}

.home-page > .navbar .navbar-brand {
  position: relative;
  margin-right: clamp(22px, 2.2vw, 34px);
  padding: 4px clamp(30px, 3.1vw, 46px) 4px 0;
}

.home-page > .navbar .navbar-brand::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 52px;
  content: "";
  background: rgba(23, 63, 66, 0.13);
  transform: translateY(-50%);
}

.home-page > .navbar .navbar-brand img {
  width: clamp(210px, 15.6vw, 216px);
  height: auto;
  margin: 0 !important;
}

.home-page > .navbar .nav-link {
  position: relative;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--home-ink-deep);
  font-family: "DM Sans", sans-serif;
  font-size: 0.99rem;
  font-weight: 650;
  line-height: 1.45;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.home-page > .navbar .nav-link:hover,
.home-page > .navbar .nav-link:focus,
.home-page > .navbar .nav-link.active {
  color: var(--home-coral-dark);
}

.home-page > .navbar .navbar-primary {
  gap: 2px;
}

.home-page > .navbar .navbar-primary > .nav-item > .nav-link.active {
  background-image: linear-gradient(var(--home-coral), var(--home-coral));
  background-position: center calc(100% - 5px);
  background-repeat: no-repeat;
  background-size: calc(100% - 26px) 2px;
}

.home-page > .navbar .navbar-actions {
  gap: 4px;
}

.home-page > .navbar button.nav-link {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.home-page > .navbar .nav-auth-login {
  color: #486163;
  font-weight: 600;
}

.home-page > .navbar .nav-auth-register {
  margin-left: 5px;
  padding-inline: 16px;
  border: 1px solid var(--home-ink);
  border-radius: 999px;
  background: var(--home-ink);
  color: #fff;
  font-weight: 750;
}

.home-page > .navbar .nav-auth-register:hover,
.home-page > .navbar .nav-auth-register:focus {
  background: var(--home-coral-dark);
  border-color: var(--home-coral-dark);
}

.home-page > .navbar .dropdown-menu {
  margin-top: 8px;
  padding: 14px !important;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: var(--home-paper-light);
  box-shadow: 0 20px 55px rgba(23, 63, 66, 0.15);
}

.home-page > .navbar .nav-account__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: rgba(240, 223, 189, 0.28);
  white-space: nowrap;
}

.home-page > .navbar .nav-account__toggle:hover,
.home-page > .navbar .nav-account__toggle:focus,
.home-page > .navbar .nav-account.show .nav-account__toggle {
  border-color: rgba(189, 63, 45, 0.38);
  background: rgba(240, 223, 189, 0.52);
  color: var(--home-coral-dark);
}

.home-page > .navbar .nav-account__toggle .bi-person-circle {
  font-size: 1.18rem;
}

.home-page > .navbar .nav-account__menu {
  min-width: 224px;
}

.home-page > .navbar .nav-account__menu .dropdown-item {
  gap: 10px;
  padding-inline: 12px;
}

.home-page > .navbar .nav-account__menu .dropdown-item > i {
  width: 19px;
  color: #526b6d;
  text-align: center;
}

.home-page > .navbar .nav-account__menu .nav-account__admin {
  color: var(--home-coral-dark);
  font-weight: 750;
}

.home-page > .navbar .nav-account__menu .nav-account__admin > i {
  color: var(--home-coral-dark);
}

.home-page > .navbar .nav-account__menu .nav-account__logout {
  color: #526b6d;
}

.home-page > .navbar .dropdown-divider {
  border-color: var(--home-line);
}

.home-page > .navbar .nav-language {
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid var(--home-line);
}

.home-page > .navbar .nav-language > .nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.home-page > .navbar .dropdown-header {
  color: var(--home-coral-dark);
  font-weight: 800;
}

.home-page > .navbar .dropdown-item {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-radius: 9px;
  color: var(--home-ink-deep);
  font-size: 0.94rem;
}

.home-page > .navbar .dropdown-item:hover,
.home-page > .navbar .dropdown-item:focus {
  background: rgba(221, 194, 142, 0.24);
}

.home-page > .navbar .dropdown-item.active,
.home-page > .navbar .dropdown-item:active {
  background: var(--home-ink);
  color: #fff;
}

.home-page > .navbar .navbar-toggler {
  border: 1px solid var(--home-line);
  border-radius: 12px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 10%, rgba(221, 194, 142, 0.35) 0, rgba(221, 194, 142, 0) 22%),
    linear-gradient(180deg, var(--home-paper-light) 0%, var(--home-paper) 100%);
}

.home-hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(23, 63, 66, 0.055);
}

.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  min-height: 690px;
  padding-top: 52px;
  padding-bottom: 64px;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.home-eyebrow,
.home-kicker {
  margin: 0 0 18px;
  color: var(--home-coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.home-eyebrow__mark {
  width: 28px;
  height: 11px;
  border-radius: 50%;
  background: var(--home-coral);
  transform: rotate(-8deg);
}

.home-hero h1,
.home-section-heading h2,
.home-workflow h2,
.home-faq h2,
.home-final-cta h2 {
  margin: 0;
  color: var(--home-ink-deep);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.home-hero h1 {
  max-width: 690px;
  font-size: clamp(3.3rem, 5.7vw, 5.55rem);
  line-height: 0.99;
}

.home-hero h1 em {
  position: relative;
  z-index: 0;
  color: var(--home-ink);
  font-weight: 600;
}

.home-hero h1 em::after {
  position: absolute;
  right: -2%;
  bottom: 0.07em;
  left: -1%;
  z-index: -1;
  height: 0.2em;
  border-radius: 99px 20px 90px 14px;
  content: "";
  background: var(--home-sand);
  opacity: 0.78;
  transform: rotate(-1.2deg);
}

.home-hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #415b5c;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.68;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button:active {
  transform: translateY(0);
}

.home-button .bi-arrow-right,
.home-choice-card .bi-arrow-right,
.home-level-card > a .bi-arrow-right,
.home-tools__directory-title .bi-arrow-right {
  transition: transform 180ms ease;
}

.home-button:hover .bi-arrow-right,
.home-choice-card:hover .bi-arrow-right,
.home-level-card > a:hover .bi-arrow-right,
.home-tools__directory-title:hover .bi-arrow-right {
  transform: translateX(4px);
}

.home-button--primary {
  background: var(--home-coral-dark);
  color: #fff !important;
  box-shadow: 0 13px 25px rgba(189, 63, 45, 0.24);
}

.home-button--primary:hover {
  background: var(--home-ink);
  box-shadow: 0 16px 34px rgba(23, 63, 66, 0.28);
}

.home-button--text {
  min-height: 50px;
  padding: 4px 0;
  color: var(--home-ink-deep);
}

.home-button--text:hover {
  color: var(--home-coral-dark);
}

.home-button__play {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  background: #fff;
}

.home-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 32px 0 0;
  padding: 0;
  color: #516868;
  font-size: 0.94rem;
  font-weight: 650;
  list-style: none;
}

.home-trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-trust-list i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-mint);
  color: var(--home-ink-deep);
  font-size: 0.7rem;
}

.home-hero__visual {
  position: relative;
  width: min(100%, 540px);
  justify-self: end;
  padding: 18px 22px 18px 18px;
}

.home-hero__visual::before {
  position: absolute;
  inset: 7% 0 0 6%;
  z-index: 0;
  border-radius: 47% 53% 42% 58% / 38% 43% 57% 62%;
  content: "";
  background: var(--home-blue);
  transform: rotate(3deg);
}

.home-hero__photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 6 / 7;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 48% 52% 44% 56% / 38% 44% 56% 62%;
  background: linear-gradient(135deg, var(--home-sand-light), var(--home-blue));
  box-shadow: var(--home-shadow);
  transform: rotate(-1.5deg);
}

.home-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__scribble {
  position: absolute;
  top: -18px;
  right: -5px;
  color: var(--home-coral);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  transform: rotate(8deg);
}

.home-paper-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  border: 1px solid rgba(23, 63, 66, 0.12);
  background: #fff;
  box-shadow: 0 15px 35px rgba(23, 63, 66, 0.18);
}

.home-paper-card--math {
  top: 18%;
  left: -38px;
  width: 178px;
  border-radius: 7px;
  transform: rotate(-7deg);
}

.home-paper-card--math span:first-child {
  margin-bottom: 9px;
  color: #5b7070;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-paper-card--math strong {
  color: var(--home-ink-deep);
  font-family: "DM Sans", sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  text-align: right;
}

.home-paper-card__line {
  height: 2px;
  margin-top: 3px;
  background: var(--home-ink-deep);
}

.home-paper-card--language {
  right: -32px;
  bottom: 18%;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-radius: 13px;
  color: var(--home-ink-deep);
  font-size: 0.82rem;
  font-weight: 800;
  transform: rotate(5deg);
}

.home-paper-card--language i {
  color: var(--home-coral);
  font-size: 1.2rem;
}

.home-hero__stamp {
  position: absolute;
  right: 6px;
  bottom: -7px;
  z-index: 4;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  border: 2px solid rgba(23, 63, 66, 0.16);
  border-radius: 50%;
  background: var(--home-lemon);
  color: var(--home-ink-deep);
  line-height: 1.05;
  text-align: center;
  transform: rotate(-7deg);
}

.home-hero__stamp::after {
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(23, 63, 66, 0.35);
  border-radius: inherit;
  content: "";
}

.home-hero__stamp strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
}

.home-hero__stamp span {
  display: block;
  max-width: 70px;
  margin: 4px auto 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-audience-bar {
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: rgba(255, 253, 248, 0.72);
}

.home-audience-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 92px;
}

.home-audience-bar p {
  margin: 0;
  color: #526b6c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-audience-bar ul {
  display: flex;
  gap: clamp(24px, 4vw, 55px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-audience-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.04rem;
  font-weight: 600;
}

.home-audience-bar li i {
  color: var(--home-coral-dark);
  font-family: "bootstrap-icons";
  font-size: 1.15rem;
}

.home-section {
  padding: clamp(76px, 8vw, 112px) 0;
}

.home-section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.home-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  max-width: none;
}

.home-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.home-section-heading h2,
.home-workflow h2,
.home-faq h2,
.home-final-cta h2 {
  font-size: clamp(2.5rem, 4.7vw, 4.4rem);
  line-height: 1.02;
}

.home-section-heading > p,
.home-section-heading--split > p,
.home-section-heading--center > p:last-child {
  margin: 20px 0 0;
  color: #526b6c;
  font-size: 1.04rem;
  line-height: 1.72;
}

.home-section-heading--split > p {
  margin: 0 0 4px;
}

.home-choice {
  background: var(--home-paper);
}

.home-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-choice-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  box-shadow: 0 15px 40px rgba(23, 63, 66, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
  color: var(--home-ink-deep);
  text-decoration: none;
}

.home-choice-card:hover {
  color: var(--home-ink-deep);
  box-shadow: var(--home-shadow);
  transform: translateY(-5px);
}

.home-choice-card--ready {
  background: var(--home-sand-light);
}

.home-choice-card--custom {
  background: var(--home-blue);
}

.home-choice-card::after {
  position: absolute;
  right: -70px;
  bottom: -85px;
  width: 245px;
  height: 245px;
  border: 1px solid rgba(23, 63, 66, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 25px rgba(255, 255, 255, 0.12), 0 0 0 50px rgba(255, 255, 255, 0.1);
}

.home-choice-card__number {
  position: absolute;
  top: 28px;
  right: 36px;
  color: rgba(23, 63, 66, 0.28);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.home-choice-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--home-ink-deep);
  font-size: 1.75rem;
}

.home-choice-card__label {
  margin: 0 0 10px !important;
  color: #8f2d22 !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-choice-card h3 {
  max-width: 420px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.home-choice-card > p:not(.home-choice-card__label) {
  max-width: 470px;
  margin: 18px 0 30px;
  color: #3b5657;
  line-height: 1.65;
}

.home-choice-card__cta,
.home-choice-card__links a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-ink-deep);
  font-weight: 800;
  text-decoration: none;
}

.home-choice-card__cta {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--home-ink-deep);
}

.home-choice-card__links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-choice-card__links a {
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(23, 63, 66, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease;
}

.home-choice-card__links a:hover {
  background: var(--home-ink);
  color: #fff;
}

.home-tools {
  border-top: 1px solid rgba(23, 63, 66, 0.08);
  background: var(--home-paper-light);
}

.home-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.home-tool-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 66, 0.12);
  border-radius: var(--home-radius);
  color: var(--home-ink-deep);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.home-tool-card:hover,
.home-tool-card:focus-visible {
  color: var(--home-ink-deep);
  box-shadow: 0 18px 40px rgba(23, 63, 66, 0.12);
  transform: translateY(-5px) rotate(-0.35deg);
}

.home-tool-card:focus-visible {
  outline: 3px solid var(--home-paper-light);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--home-ink-deep), 0 18px 40px rgba(23, 63, 66, 0.16);
}

.home-tool-card--sand { background: #efdfbd; }
.home-tool-card--coral { background: #f8b19d; }
.home-tool-card--blue { background: #c9d7f0; }
.home-tool-card--mint { background: #c9e1d8; }
.home-tool-card--ink { border-color: var(--home-ink); background: var(--home-ink); color: #fffdf8; }
.home-tool-card--lemon { background: var(--home-lemon); }
.home-tool-card--ink:hover,
.home-tool-card--ink:focus-visible { border-color: var(--home-sand); background: #10373a; color: #fffdf8; }

.home-tool-card::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid currentColor;
  border-radius: 46% 54% 55% 45%;
  content: "";
  opacity: 0.13;
  transform: rotate(18deg);
}

.home-tool-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid rgba(23, 63, 66, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 1.35rem;
}

.home-tool-card--ink .home-tool-card__icon {
  border-color: rgba(255, 253, 248, 0.34);
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
}

.home-tool-card__subject {
  margin-bottom: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #2d5153;
  text-transform: uppercase;
}

.home-tool-card h3 {
  max-width: 290px;
  margin: 0;
  color: inherit;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.home-tool-card h3 + span {
  max-width: 300px;
  margin-top: 11px;
  font-size: 0.96rem;
  line-height: 1.58;
  color: #344f50;
}

.home-tool-card--ink .home-tool-card__subject {
  color: #f0dfbd;
}

.home-tool-card--ink h3 {
  color: #fffdf8;
}

.home-tool-card--ink h3 + span {
  color: #f4ead8;
}

.home-tool-card--ink .home-tool-card__arrow {
  color: #fffdf8;
}

.home-tool-card__arrow {
  position: absolute;
  top: 27px;
  right: 27px;
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.home-tool-card:hover .home-tool-card__arrow,
.home-tool-card:focus-visible .home-tool-card__arrow {
  transform: translate(3px, -3px);
}

.home-tools__directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.home-tools__directory-group {
  padding: 24px 26px;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: var(--home-paper);
}

.home-tools__directory-title {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--home-ink-deep);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.home-tools__directory-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.home-tools__directory-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(23, 63, 66, 0.14);
  border-radius: 999px;
  background: var(--home-paper-light);
  color: #385455;
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.home-tools__directory-links a:hover,
.home-tools__directory-links a:focus-visible {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fff;
}

.home-levels {
  background: var(--home-paper);
}

.home-levels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-level-card {
  display: flex;
  min-height: 455px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: var(--home-paper-light);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.home-level-card:hover {
  box-shadow: var(--home-shadow);
  transform: translateY(-5px);
}

.home-level-card--primary { border-top: 8px solid var(--home-sand); }
.home-level-card--secondary { border-top: 8px solid var(--home-coral); }
.home-level-card--high { border-top: 8px solid var(--home-ink); }

.home-level-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  color: #526b6c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-level-card__top i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-paper);
  color: var(--home-coral-dark);
  font-size: 1.3rem;
}

.home-level-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.home-level-card > p {
  min-height: 72px;
  margin: 15px 0 22px;
  color: #526969;
  font-size: 1rem;
  line-height: 1.65;
}

.home-level-card ul {
  margin: 0 0 30px;
  padding: 0;
  color: #375455;
  font-size: 0.94rem;
  font-weight: 650;
  list-style: none;
}

.home-level-card li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid rgba(23, 63, 66, 0.1);
}

.home-level-card li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--home-coral);
}

.home-level-card > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--home-ink-deep);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.home-workflow {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 9vw, 122px) 0;
  background: var(--home-ink-deep);
  color: #fff;
}

.home-workflow::after {
  position: absolute;
  top: -160px;
  right: -130px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(221, 194, 142, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 60px rgba(221, 194, 142, 0.025), 0 0 0 120px rgba(221, 194, 142, 0.025);
}

.home-workflow__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.home-workflow__visual {
  position: relative;
  padding: 24px;
}

.home-workflow__visual::before {
  position: absolute;
  inset: 0 8% 7% 0;
  border-radius: 42% 58% 53% 47% / 46% 37% 63% 54%;
  content: "";
  background: var(--home-sand);
  transform: rotate(-3deg);
}

.home-workflow__image-wrap {
  position: relative;
  aspect-ratio: 1120 / 747;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 42% 58% 53% 47% / 46% 37% 63% 54%;
  background: var(--home-sand-light);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  transform: rotate(1.5deg);
}

.home-workflow__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-workflow__note {
  position: absolute;
  right: -14px;
  bottom: 8%;
  display: flex;
  max-width: 210px;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border-radius: 13px;
  background: var(--home-lemon);
  color: var(--home-ink-deep);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.25);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  transform: rotate(-3deg);
}

.home-workflow__note i {
  color: var(--home-coral-dark);
  font-size: 1.2rem;
}

.home-kicker--light {
  color: var(--home-sand);
}

.home-workflow h2 {
  color: #fff;
}

.home-workflow__intro {
  max-width: 570px;
  margin: 25px 0 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
}

.home-steps {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.home-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.home-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.home-steps > li > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--home-sand);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.home-steps h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1rem;
  font-weight: 750;
}

.home-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.home-button--sand {
  background: var(--home-sand);
  color: var(--home-ink-deep) !important;
}

.home-button--sand:hover {
  background: var(--home-lemon);
}

.home-values {
  background: var(--home-paper-light);
}

.home-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-values article {
  padding: 38px clamp(24px, 3vw, 42px);
}

.home-values article + article {
  border-left: 1px solid var(--home-line);
}

.home-values__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 20px;
  background: var(--home-paper);
  color: var(--home-coral-dark);
  font-size: 1.45rem;
}

.home-values h3 {
  margin: 0 0 11px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.home-values article p {
  margin: 0;
  color: #5b7070;
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-faq {
  background: var(--home-paper);
}

.home-faq__grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(55px, 10vw, 145px);
  align-items: start;
}

.home-faq__intro {
  position: sticky;
  top: 120px;
}

.home-faq__intro > p:not(.home-kicker) {
  margin: 22px 0;
  color: #566e6e;
}

.home-faq__intro > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-ink-deep);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--home-sand);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.home-faq__items details {
  border-top: 1px solid var(--home-line);
}

.home-faq__items details:last-child {
  border-bottom: 1px solid var(--home-line);
}

.home-faq__items summary {
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 3px;
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.17rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

.home-faq__items summary::-webkit-details-marker {
  display: none;
}

.home-faq__items summary i {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--home-paper-light);
  color: var(--home-coral-dark);
  font-family: "bootstrap-icons";
  font-size: 0.9rem;
  transition: transform 180ms ease, background 180ms ease;
}

.home-faq__items details[open] summary i {
  background: var(--home-coral);
  color: #fff;
  transform: rotate(45deg);
}

.home-faq__items details p {
  max-width: 660px;
  margin: -5px 55px 30px 3px;
  color: #506969;
  font-size: 1rem;
  line-height: 1.68;
}

.home-final-cta {
  padding: 0 0 32px;
  background: var(--home-paper);
}

.home-final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 55px;
  align-items: end;
  overflow: hidden;
  padding: clamp(44px, 6vw, 72px);
  border: 1px solid rgba(23, 63, 66, 0.16);
  border-radius: var(--home-radius-lg);
  background: var(--home-sand);
}

.home-final-cta__inner::after {
  position: absolute;
  top: -130px;
  right: 19%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(23, 63, 66, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.09), 0 0 0 70px rgba(255, 255, 255, 0.07);
}

.home-final-cta__inner > * {
  position: relative;
  z-index: 1;
}

.home-final-cta h2 {
  max-width: 650px;
}

.home-final-cta .home-kicker {
  color: var(--home-ink);
}

.home-final-cta p:not(.home-kicker) {
  max-width: 630px;
  margin: 18px 0 0;
  color: var(--home-ink);
}

.home-final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 215px;
}

.home-button--outline {
  border-color: rgba(23, 63, 66, 0.32);
  background: rgba(255, 255, 255, 0.32);
  color: var(--home-ink-deep) !important;
}

.home-button--outline:hover {
  background: var(--home-paper-light);
}

.home-final-cta__doodle {
  position: absolute;
  top: 25px;
  right: 32px;
  color: rgba(23, 63, 66, 0.25);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  transform: rotate(5deg);
}

.home-page > footer {
  margin: 0 !important;
  padding: 75px 0 28px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--home-ink-deep) !important;
  color: rgba(255, 255, 255, 0.62);
}

.home-page > footer .container {
  width: min(1240px, calc(100% - 40px));
  max-width: none;
  padding: 0;
  text-align: left !important;
}

.home-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.82fr);
  gap: 70px;
  padding-bottom: 52px;
}

.home-footer__brand img {
  width: 176px;
  height: auto;
  padding: 8px;
  border-radius: 10px;
  background: var(--home-paper-light);
}

.home-footer__brand p {
  max-width: 400px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.home-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.home-footer__nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.home-footer__nav strong {
  margin-bottom: 9px;
  color: var(--home-sand);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-footer__nav a {
  min-height: 40px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.94rem;
  text-decoration: none;
}

.home-footer__nav a:hover {
  color: #fff;
}

.home-footer__legal-intro {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.home-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.home-page > footer .home-footer__legal a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  text-decoration: none;
}

.home-page > footer .home-footer__legal a:hover {
  color: #fff;
}

.home-page .feedback-widget {
  right: 18px;
  bottom: 18px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: var(--home-ink) !important;
  box-shadow: 0 12px 30px rgba(13, 47, 49, 0.24);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
}

@media (max-width: 1199.98px) {
  .home-page > .navbar .navbar-brand {
    margin-right: 18px;
    padding: 0;
  }

  .home-page > .navbar .navbar-brand::after {
    display: none;
  }

  .home-page > .navbar .navbar-collapse {
    max-height: calc(100vh - 132px);
    margin-top: 12px;
    padding: 17px;
    overflow-y: auto;
    border: 1px solid var(--home-line);
    border-radius: 18px;
    background: var(--home-paper-light);
    box-shadow: var(--home-shadow);
  }

  .home-page > .navbar .navbar-nav {
    align-items: stretch !important;
  }

  .home-page > .navbar .navbar-primary > .nav-item > .nav-link {
    width: 100%;
    text-align: left;
  }

  .home-page > .navbar .navbar-primary > .nav-item > .nav-link.active {
    background-position: 13px calc(100% - 5px);
    background-size: 28px 2px;
  }

  .home-page > .navbar .navbar-actions {
    gap: 2px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--home-line);
  }

  .home-page > .navbar .nav-auth-register {
    display: inline-flex;
    width: fit-content;
    margin: 6px 0;
  }

  .home-page > .navbar .nav-account__toggle {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
  }

  .home-page > .navbar .nav-account__toggle::after {
    margin-left: auto;
  }

  .home-page > .navbar .nav-account__menu {
    width: 100%;
    margin-top: 4px;
    box-shadow: 0 12px 30px rgba(23, 63, 66, 0.1);
  }

  .home-page > .navbar .generator-dropdown {
    min-width: 0;
  }

  .home-page > .navbar .nav-language {
    margin: 4px 0 0 !important;
    padding: 4px 0 0 !important;
    border-left: 0 !important;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
    gap: 45px;
  }

  .home-paper-card--math {
    left: -15px;
  }

  .home-paper-card--language {
    right: -10px;
  }
}

@media (max-width: 991.98px) {
  .home-page > .navbar {
    min-height: 82px;
  }

  .home-page > .navbar .navbar-brand img {
    width: 190px;
  }

  .home-hero::before {
    display: none;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 65px;
  }

  .home-hero__copy {
    max-width: 800px;
  }

  .home-hero h1 {
    max-width: 780px;
    font-size: clamp(3.55rem, 10vw, 5.7rem);
  }

  .home-hero__visual {
    width: min(82%, 570px);
    justify-self: center;
  }

  .home-audience-bar__inner,
  .home-section-heading--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-audience-bar__inner {
    padding-block: 24px;
  }

  .home-audience-bar ul {
    width: 100%;
    justify-content: space-between;
  }

  .home-section-heading--split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-section-heading--split > p {
    max-width: 650px;
  }

  .home-tools__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-tools__directory {
    grid-template-columns: 1fr;
  }

  .home-levels__grid {
    grid-template-columns: 1fr;
  }

  .home-level-card {
    min-height: 0;
  }

  .home-level-card > p {
    min-height: 0;
  }

  .home-workflow__grid {
    grid-template-columns: 1fr;
  }

  .home-workflow__visual {
    width: min(88%, 650px);
    margin-inline: auto;
  }

  .home-workflow__copy {
    max-width: 720px;
  }

  .home-values__grid {
    grid-template-columns: 1fr;
  }

  .home-values article + article {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .home-faq__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .home-faq__intro {
    position: static;
    max-width: 680px;
  }

  .home-final-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-final-cta__actions {
    align-items: flex-start;
  }

  .home-footer__main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .home-shell,
  .home-page > .navbar .container,
  .home-page > footer .container,
  .home-main > .alert {
    width: min(100% - 28px, 1240px);
  }

  .home-announcement {
    font-size: 0.78rem;
  }

  .home-announcement__inner {
    min-height: 44px;
    flex-wrap: wrap;
    gap: 3px 7px;
    padding: 6px 0;
    line-height: 1.2;
  }

  .home-announcement__dot {
    display: none;
  }

  .home-hero__grid {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.7rem);
  }

  .home-hero__lead {
    margin-top: 23px;
    font-size: 1rem;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 27px;
  }

  .home-button--primary {
    width: 100%;
  }

  .home-trust-list {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 27px;
  }

  .home-hero__visual {
    width: calc(100% - 22px);
    padding: 10px;
  }

  .home-paper-card--math {
    top: 12%;
    left: -12px;
    width: 150px;
    padding: 12px;
  }

  .home-paper-card--language {
    right: -12px;
    bottom: 17%;
    padding: 12px;
  }

  .home-hero__stamp {
    right: -3px;
    width: 92px;
    height: 92px;
  }

  .home-hero__stamp strong {
    font-size: 1.25rem;
  }

  .home-audience-bar__inner {
    gap: 18px;
  }

  .home-audience-bar ul {
    flex-wrap: wrap;
    gap: 13px 24px;
    justify-content: flex-start;
  }

  .home-audience-bar li {
    font-size: 0.92rem;
  }

  .home-section {
    padding: 68px 0;
  }

  .home-section-heading {
    margin-bottom: 38px;
  }

  .home-section-heading h2,
  .home-workflow h2,
  .home-faq h2,
  .home-final-cta h2 {
    font-size: clamp(2.4rem, 11.5vw, 3.5rem);
  }

  .home-choice__grid,
  .home-tools__grid {
    grid-template-columns: 1fr;
  }

  .home-choice-card {
    min-height: 0;
    padding: 30px 25px 38px;
    border-radius: 32px;
  }

  .home-choice-card__number {
    top: 23px;
    right: 26px;
  }

  .home-choice-card h3 {
    font-size: 2.2rem;
  }

  .home-tool-card {
    min-height: 270px;
  }

  .home-tools__directory-group {
    padding: 20px;
  }

  .home-tools__directory-links {
    gap: 7px;
  }

  .home-level-card {
    padding: 28px 24px;
  }

  .home-workflow {
    padding: 72px 0;
  }

  .home-workflow__visual {
    width: 100%;
    padding: 8px;
  }

  .home-workflow__note {
    right: -5px;
    bottom: -10px;
  }

  .home-steps li {
    grid-template-columns: 40px 1fr;
  }

  .home-values__grid {
    margin-top: 38px;
  }

  .home-values article {
    padding: 30px 6px;
  }

  .home-faq__items summary {
    font-size: 1.16rem;
  }

  .home-faq__items details p {
    margin-right: 6px;
  }

  .home-final-cta {
    padding-bottom: 14px;
  }

  .home-final-cta__inner {
    gap: 35px;
    padding: 42px 25px;
    border-radius: 32px;
  }

  .home-final-cta__actions,
  .home-final-cta__actions .home-button {
    width: 100%;
  }

  .home-page > footer {
    padding-top: 58px !important;
  }

  .home-footer__main {
    gap: 46px;
  }

  .home-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .home-footer__legal-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .home-page > .navbar .navbar-brand img {
    width: 172px;
  }

  .home-hero h1 {
    font-size: 2.85rem;
  }

  .home-paper-card--language {
    display: none;
  }

  .home-choice-card__links {
    flex-direction: column;
  }

  .home-choice-card__links a {
    justify-content: center;
  }

  .home-footer__nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
