@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
@import url("https://fonts.googleapis.com/css2?family=Asap:wght@600;700&family=Roboto:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*# sourceMappingURL=normalize.min.css.map */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  font-family: "Roboto", sans-serif;
  color: #212529;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 18px;
  }
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

ul {
  padding: 0;
}

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

a:hover {
  filter: brightness(105%);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
  font-size: 12px;
  line-height: 1.5;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.clause {
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause p {
  font-size: 14px;
}
.clause a {
  color: #7f919e;
  text-decoration: underline;
}
.clause a:hover {
  color: #7f919e;
}

.terms {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.terms p {
  font-size: 14px;
}
.terms label {
  cursor: pointer;
}
.terms input[type=checkbox] {
  margin-top: 2px;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}

.terms-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms-error.show {
  display: block;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.disclaimer p {
  font-size: 14px;
}

.header {
  width: 100%;
  background: #fff;
}

.navbar {
  width: 100%;
}
.navbar__top {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.navbar__topBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.navbar__topInner {
  position: relative;
  width: 100%;
  max-width: 1248px;
  padding: 16px 24px 24px;
}
.navbar__brandRow {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.navbar__logoFrame {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px 8px 0;
  flex-shrink: 0;
}
.navbar__logoImg {
  width: 120px;
  height: 80px;
  object-fit: contain;
}
.navbar__logoText {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.navbar__logoTitle {
  font-family: "Asap", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  color: #ed7826;
  white-space: nowrap;
}
.navbar__logoBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #3d1657;
  border-radius: 24px;
}
.navbar__logoBadgeText {
  font-family: "Asap", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.6px;
  color: #fff;
  text-transform: uppercase;
}
.navbar__socials {
  display: flex;
  flex: 1;
  gap: 16px;
  min-width: 0;
}
@media (max-width: 1200px) {
  .navbar__socials {
    display: none;
  }
}
.navbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.navbar__socialIcon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}
.navbar__socialText {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #3d1657;
}
.navbar__navBar {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  background: #e7e7e7;
  padding: 0 16px;
}
.navbar__navInner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1248px;
  padding: 0 24px;
}
.navbar__menuBtn {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.navbar__menuIcon {
  width: 24px;
  height: 24px;
}
.navbar__links {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
}
.navbar__link {
  display: flex;
  align-items: center;
  padding: 16px 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #262626;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}
.navbar__link:hover {
  filter: brightness(95%);
}
.navbar__search {
  display: flex;
  align-items: center;
  width: 258px;
  max-width: 100%;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  flex-shrink: 0;
}
.navbar__searchInput {
  flex: 1;
  border: none;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1.4;
  color: #262626;
  background: transparent;
  outline: none;
}
.navbar__searchInput::placeholder {
  color: #b0b0b0;
}
.navbar__searchBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.navbar__searchIcon {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .navbar__topInner {
    padding: 12px 16px 16px;
  }
  .navbar__brandRow {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .navbar__logoFrame {
    padding: 0;
  }
  .navbar__logoImg {
    width: 90px;
    height: 60px;
  }
  .navbar__logoTitle {
    font-size: 24px;
  }
  .navbar__logoBadge {
    padding: 6px 10px;
  }
  .navbar__logoBadgeText {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
  .navbar__socials {
    display: flex;
    flex: none;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
  .navbar__socialIcon {
    width: 40px;
    height: 40px;
  }
  .navbar__socialText {
    display: none;
  }
  .navbar__navBar {
    background: #ed7826;
    padding: 8px 16px;
  }
  .navbar__navInner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
  }
  .navbar__menuBtn {
    display: flex;
    order: 1;
  }
  .navbar__search {
    flex: 1;
    width: auto;
    min-width: 0;
    border: none;
    order: 2;
  }
  .navbar__links {
    display: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .navbar__links--open {
    display: flex;
  }
  .navbar__link {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid #e7e7e7;
  }
  .navbar__link:last-child {
    border-bottom: none;
  }
}

.container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.main {
  width: 100%;
  display: flex;
  justify-content: center;
}

.articleLayout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1248px;
  width: 100%;
  padding: 24px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .articleLayout {
    flex-direction: column;
    padding: 10px;
  }
}

.article {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 16px;
  width: 100%;
}
.article__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
  font-size: 12px;
  line-height: 1.3;
}
.article__breadcrumb {
  color: #000;
  flex: 1;
}
.article__date {
  color: #6d6d6d;
  text-align: right;
  flex: 1;
}
.article__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #262626;
}
@media (max-width: 768px) {
  .article__title {
    font-size: 28px;
  }
}
.article__titleAccent {
  color: #fb3c0c;
}
.article__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
}
.article__heroBanner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.article__heroQuote {
  background: #edfaf0;
  padding: 8px 16px;
  text-align: center;
  font-size: 22px;
  font-style: italic;
  line-height: 1.3;
  color: #262626;
}
.article__heroQuoteAccent {
  font-weight: 700;
  font-style: italic;
  color: #35ae4f;
}
.article__heroCompare {
  display: flex;
  gap: 8px;
  position: relative;
}
@media (max-width: 900px) {
  .article__heroCompare {
    flex-direction: column;
  }
}
.article__heroArrow {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(calc(-50% - 10px));
  width: 140px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .article__heroArrow {
    rotate: 90deg;
    top: auto;
    bottom: 40%;
    right: 0;
    left: auto;
  }
}
.article__heroCol {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.article__heroCol--before {
  background: #f6f6f6;
}
.article__heroCol--after {
  background: #673589;
}
.article__heroImg {
  width: 100%;
  aspect-ratio: 404/408;
  object-fit: cover;
}
.article__heroCaption {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article__heroLabel {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.article__heroCol--before .article__heroLabel {
  color: #ed7826;
}
.article__heroCol--after .article__heroLabel {
  color: #fff;
}
.article__heroLine {
  width: 40px;
  height: 2px;
  object-fit: contain;
}
.article__heroDesc {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.8px;
}
.article__heroCol--before .article__heroDesc {
  color: #454545;
}
.article__heroCol--after .article__heroDesc {
  color: #fff;
}
.article__paragraph {
  font-size: 18px;
  line-height: 1.5;
  color: #454545;
}
.article__paragraph p + p {
  margin-top: 18px;
}
.article__checkboxBox {
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
}
.article__checkboxTitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
}
.article__checkboxList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.article__checkboxItem {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: pointer;
  text-align: left;
  border: none;
  background: none;
  width: 100%;
  padding: 0;
  font: inherit;
}
.article__checkbox {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 2px solid #262626;
  border-radius: 4px;
  background: #fff;
  position: relative;
}
.article__checkbox--checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #673589;
}
.article__checkboxLabel {
  font-size: 18px;
  line-height: 1.5;
  color: #454545;
  flex: 1;
}
.article__heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #262626;
  padding-top: 8px;
}
.article__quote {
  position: relative;
  background: #fff5ee;
  border: 1px solid #ffe6d5;
  border-radius: 4px;
  padding: 32px 24px;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: #454545;
}
.article__quoteIcon {
  position: absolute;
  top: -25px;
  right: 29px;
  width: 48px;
  height: 48px;
}
.article__figure {
  border-radius: 4px;
  overflow: hidden;
}
.article__figureImg {
  width: 100%;
  aspect-ratio: 816/480;
  object-fit: cover;
}
.article__figureCaption {
  background: #f6f6f6;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: #888;
}
.article__journal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  border-radius: 4px;
  overflow: hidden;
}
.article__journalBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.article__journalCard {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  min-width: 200px;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  text-align: center;
  overflow: hidden;
  flex-shrink: 0;
}
.article__journalCardBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: 24px;
}
.article__journalCardContent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.article__journalDay {
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  color: #262626;
  width: 100%;
}
.article__journalText {
  font-size: 16px;
  font-style: italic;
  line-height: 1.4;
  color: #262626;
  width: 100%;
}
.article__journalText--regular {
  font-style: normal;
}
.article__journalPoint {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  z-index: 2;
}
.article__journalLine {
  position: relative;
  z-index: 1;
  width: 2px;
  height: 30px;
  flex-shrink: 0;
  object-fit: fill;
}
.article__professor {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}
.article__professorRow {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.article__professorAside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.article__professorPhoto {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  border: 1px solid #e7e7e7;
  object-fit: cover;
}
.article__professorLine {
  width: 40px;
  height: 2px;
}
.article__professorName {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
}
.article__professorRole {
  font-size: 14px;
  line-height: 1.3;
  color: #673589;
}
.article__professorQuote {
  flex: 1;
  min-width: 240px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: #4f4f4f;
}
.article__professorQuote p + p {
  margin-top: 18px;
}
.article__signature {
  width: 200px;
  height: auto;
  align-self: flex-end;
}
.article__features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 8px 0;
}
.article__featuresLogo {
  width: 300px;
  max-width: 100%;
  height: auto;
}
.article__featuresGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.article__featureCard {
  flex: 1;
  min-width: 240px;
  border-radius: 8px;
  overflow: hidden;
}
.article__featureInner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 250px;
  padding: 16px;
  text-align: center;
}
.article__featureBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__featureIcon {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.article__featureText {
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
}
.article__testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.article__testimonialSlider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 816px;
  padding: 16px 0;
}
.article__testimonialViewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.article__testimonialTrack {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}
.article__testimonialCard {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 0 0 100%;
  min-width: 100%;
  padding: 24px;
  background: #f6f6f6;
  border: 1px solid #673589;
  border-radius: 4px;
  box-sizing: border-box;
}
.article__testimonialPhoto {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  border: 1px solid #b0b0b0;
  object-fit: cover;
  flex-shrink: 0;
}
.article__testimonialBody {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article__testimonialTitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #262626;
}
.article__testimonialText {
  font-size: 16px;
  line-height: 1.4;
  color: #3d3d3d;
}
.article__testimonialText p + p {
  margin-top: 16px;
}
.article__testimonialAuthor {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #673589;
}
.article__sliderBtn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.article__sliderBtn:disabled {
  opacity: 0.4;
  cursor: default;
}
.article__sliderBtn img {
  display: block;
  width: 100%;
  height: 100%;
}
.article__sliderBtn--next img {
  transform: scaleX(-1);
}
.article__testimonialPagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
}
.article__testimonialDot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #b0b0b0;
  cursor: pointer;
  transition: background 0.25s ease;
}
.article__testimonialDot--active {
  background: #673589;
}
.article__cta {
  display: flex;
  align-items: center;
  border: 1px solid #ed7826;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 280px;
}
@media (max-width: 768px) {
  .article__cta {
    flex-direction: column;
    align-items: stretch;
  }
}
.article__ctaBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  pointer-events: none;
}
.article__ctaContent {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  min-width: 0;
  padding: 32px 48px;
}
@media (max-width: 768px) {
  .article__ctaContent {
    padding: 24px;
  }
}
.article__ctaLogoWrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1245/232;
  max-width: 100%;
}
.article__ctaLogo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}
.article__ctaText {
  font-size: 20px;
  line-height: 1.5;
  color: #262626;
  margin: 0;
}
.article__ctaPrice {
  display: inline-block;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #fb3c0c;
}
.article__ctaBtn {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid #35ae4f;
  border-radius: 4px;
  background: radial-gradient(circle at center, #37c856 0%, #27b045 50%, #189834 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.article__ctaBtn:hover {
  filter: brightness(105%);
}
.article__ctaProduct {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  min-width: 0;
  aspect-ratio: 408/404;
  align-self: stretch;
}
@media (max-width: 768px) {
  .article__ctaProduct {
    aspect-ratio: auto;
    min-height: 280px;
  }
}
.article__ctaProductImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
}
.article__author {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid #673589;
  padding-bottom: 10px;
}
.article__authorPhoto {
  width: 64px;
  height: 64px;
  border-radius: 96px;
  object-fit: cover;
  flex-shrink: 0;
}
.article__authorInfo {
  font-size: 14px;
  line-height: 1.5;
  color: #454545;
}
.article__authorBio {
  color: #888;
  margin-top: 4px;
}
.article__comments {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article__commentsTitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #262626;
  padding: 8px 0;
}
.article__comment {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #b0b0b0;
}
.article__commentAvatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
}
.article__commentName {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
}
.article__commentText {
  font-size: 18px;
  line-height: 1.5;
  color: #4f4f4f;
  padding: 4px 0;
}
.article__commentMention {
  color: #2d47eb;
}
.article__commentDate {
  font-size: 12px;
  line-height: 1.5;
  color: #888;
}
.article__commentsCta {
  padding: 24px 0;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.78px;
  color: #2d47eb;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}
.article__commentsCta:hover {
  filter: brightness(110%);
}

.sidebar {
  width: 100%;
  max-width: 360px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}
.sidebar__sectionTitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #3d1657;
  padding: 16px 0;
}
.sidebar__divider {
  width: 100%;
  height: 1px;
  object-fit: cover;
}
.sidebar__article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sidebar__articleImg {
  width: 116px;
  height: 140px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}
.sidebar__articleBody {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  min-height: 140px;
}
.sidebar__articleTitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
}
.sidebar__articleDate {
  font-size: 12px;
  line-height: 1.3;
  color: #b0b0b0;
  text-align: right;
}
.sidebar__articleBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 2px solid #6d6d6d;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #6d6d6d;
  cursor: pointer;
  width: 100%;
  max-width: 228px;
}
.sidebar__articleBtn:hover {
  border-color: #673589;
  color: #673589;
}
.sidebar__partners {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .sidebar__partners {
    padding: 0;
  }
}
.sidebar__partnerLogo {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sidebar__banner {
  position: sticky;
  top: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.sidebar__bannerHeadOrange {
  background: #ed7826;
  padding: 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
.sidebar__bannerHeadDark {
  background: #262626;
  padding: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.24);
}
.sidebar__bannerFree {
  color: #61d57a;
}
.sidebar__bannerImageWrap {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
}
.sidebar__bannerImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar__bannerBtnWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
}
.sidebar__bannerBtn {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: radial-gradient(circle at center, #37c856 0%, #27b045 50%, #189834 100%);
  box-shadow: inset 0 0 9.9px rgba(0, 0, 0, 0.25);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.sidebar__bannerBtn:hover {
  filter: brightness(105%);
}

.textBold {
  font-weight: 700;
}

.textGreen {
  color: #35ae4f;
}

.textOrange {
  color: #ed7826;
}

.callPage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.callPage__section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.callPage__main {
  width: 100%;
  max-width: 792px;
  padding: 24px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .callPage__main {
    padding: 10px;
  }
}
.callPage__card {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.callPage__hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}
.callPage__heroHeading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.callPage__checkIcon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.callPage__successTitle {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  color: #3d1657;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .callPage__successTitle {
    font-size: 40px;
    white-space: normal;
    text-align: center;
  }
}
.callPage__title {
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #3d1657;
}
@media (max-width: 640px) {
  .callPage__title {
    font-size: 28px;
  }
}
.callPage__titleAccent {
  color: #ed7826;
}
.callPage__product {
  width: 360px;
  max-width: 100%;
  height: 360px;
  position: relative;
}
.callPage__productImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}
.callPage__lead {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: #000;
}
.callPage__productBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.callPage__callBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}
.callPage__phoneToggle {
  display: flex;
  justify-content: center;
  width: 100%;
}
.callPage__phoneToggle--active .callPage__phoneReveal {
  display: none;
}
.callPage__phoneToggle--active .callPage__phoneLink {
  display: inline-flex;
}
.callPage__phoneReveal, .callPage__phoneBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 32px;
  background: #ed7826;
  border-radius: 999px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.44px;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
@media (max-width: 640px) {
  .callPage__phoneReveal, .callPage__phoneBtn {
    font-size: 32px;
    padding: 16px 24px;
  }
}
.callPage__phoneReveal:hover, .callPage__phoneBtn:hover {
  filter: brightness(105%);
}
.callPage__phoneReveal {
  font-size: 24px;
  letter-spacing: 0;
}
@media (max-width: 640px) {
  .callPage__phoneReveal {
    font-size: 18px;
  }
}
.callPage__phoneLink {
  display: none;
}
.callPage__phoneIcon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.callPage__hours {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.callPage__hoursRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.callPage__timeIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.callPage__hoursText {
  font-size: 16px;
  line-height: 1.4;
  color: #262626;
  text-align: center;
}
.callPage__hoursNote {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  text-align: center;
}
.callPage__warning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  background: #f6f6f6;
  border: 1px solid #e7e7e7;
  border-radius: 32px;
  max-width: 100%;
}
.callPage__warningIcon {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.callPage__warningIconBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.callPage__warningIconMark {
  position: absolute;
  left: 50%;
  top: calc(50% - 2px);
  transform: translate(-50%, -50%);
  width: 18px;
  height: 16px;
}
.callPage__warningText {
  font-size: 16px;
  line-height: 1.3;
  color: #262626;
  text-align: center;
}
.callPage__warningLabel {
  color: #fb3c0c;
  font-weight: 700;
}

.footer {
  width: 100%;
  background: #262626;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__disclaimer {
  padding-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
}
.footer__copyright {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  line-height: 1.3;
  color: #e7e7e7;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  min-width: 240px;
}
.footer__link {
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 32px;
}
.footer__legalText {
  font-size: 12px;
  line-height: 1.5;
  color: #b0b0b0;
  text-align: center;
  margin-top: 12px;
}

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