.border-secondary-soft {
  border-color: color-mix(in srgb, var(--color-secondary) 35%, transparent);
}

/* Shared top clearance for page content sitting directly under the
   absolutely positioned header (which now spans two rows on desktop). */
.page-hero-offset {
  padding-top: 110px;
}

@media (min-width: 1024px) {
  .page-hero-offset {
    padding-top: 160px;
  }
}

/* Second header row (nav menu): border stretches edge-to-edge of the header
   pill by negating container-base's own padding, while the inner padding
   keeps nav items aligned with the logo/buttons row above. */
.header-nav {
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 4px;
  border-top: 1px solid var(--color-gray-200);
  margin-left: calc(-1 * var(--spacing) * 4);
  margin-right: calc(-1 * var(--spacing) * 4);
  padding-left: calc(var(--spacing) * 4);
  padding-right: calc(var(--spacing) * 4);
}

@media (min-width: 40rem) {
  .header-nav {
    margin-left: calc(-1 * var(--spacing) * 8);
    margin-right: calc(-1 * var(--spacing) * 8);
    padding-left: calc(var(--spacing) * 8);
    padding-right: calc(var(--spacing) * 8);
  }
}

@media (min-width: 48rem) {
  .header-nav {
    margin-left: calc(-1 * var(--spacing) * 12);
    margin-right: calc(-1 * var(--spacing) * 12);
    padding-left: calc(var(--spacing) * 12);
    padding-right: calc(var(--spacing) * 12);
  }
}

@media (min-width: 64rem) {
  .header-nav {
    margin-left: calc(-1 * var(--spacing) * 16);
    margin-right: calc(-1 * var(--spacing) * 16);
    padding-left: calc(var(--spacing) * 16);
    padding-right: calc(var(--spacing) * 16);
  }
}

@media (min-width: 80rem) {
  .header-nav {
    margin-left: calc(-1 * var(--spacing) * 20);
    margin-right: calc(-1 * var(--spacing) * 20);
    padding-left: calc(var(--spacing) * 20);
    padding-right: calc(var(--spacing) * 20);
  }
}

:root {
  --registration-valid-bg: rgba(22, 163, 74, 0.08);
  --registration-valid-border: #16a34a;
  --registration-invalid-bg: rgba(220, 38, 38, 0.08);
  --registration-invalid-border: #dc2626;
  --registration-pending-bg: rgba(217, 119, 6, 0.08);
  --registration-pending-border: #d97706;
  --registration-focus-ring: rgba(238, 209, 69, 0.16);
}

[data-duration] [data-timer-colon] {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

#registration-form input,
#registration-form button,
#registration-form select,
#registration-form textarea {
  font: inherit;
}

#registration-form input[type="text"]:focus,
#registration-form input[type="email"]:focus,
#registration-form input[type="tel"]:focus,
#registration-form .input:focus,
#registration-form .form-field:focus {
  box-shadow: 0 0 0 3px var(--registration-focus-ring);
}

#registration-form input[type="text"]::placeholder,
#registration-form input[type="email"]::placeholder,
#registration-form input[type="tel"]::placeholder,
#registration-form .input::placeholder,
#registration-form .form-field::placeholder {
  opacity: 0.75;
}

#registration-form .valid,
#registration-form input.valid,
#registration-form .form-field.valid {
  background-color: var(--registration-valid-bg) !important;
  border-color: var(--registration-valid-border) !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.16) !important;
}

#registration-form .invalid,
#registration-form input.invalid,
#registration-form .form-field.invalid {
  border-color: var(--registration-invalid-border) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14) !important;
}

#registration-form .phone-checking,
#registration-form input[type="tel"][style*="border-color: #ffc107"],
#registration-form input[type="tel"][style*="border-color: rgb(255, 193, 7)"] {
  background-color: var(--registration-pending-bg) !important;
  border-color: var(--registration-pending-border) !important;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.14) !important;
}

#registration-form .iti {
  width: 100% !important;
  display: block !important;
}

#registration-form .iti__country-list {
  max-width: min(320px, calc(100vw - 2rem));
}

#registration-form input[name="phone"],
#registration-form input[type="tel"] {
  padding-left: 92px !important;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

html[dir="rtl"] #registration-form input[name="phone"],
html[dir="rtl"] #registration-form input[type="tel"] {
  padding-right: 92px !important;
  padding-left: 12px !important;
  text-align: right;
}

#registration-form input[type="tel"][style*="background-image"] {
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 20px 20px !important;
}

html[dir="rtl"] #registration-form input[type="tel"][style*="background-image"] {
  background-position: left 12px center !important;
}

#registration-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#registration-form button[type="submit"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--registration-focus-ring);
}

.registration-form__consent {
    font-size: 13px;
    padding-top: 14px;
}

.registration-form__consent a{
  text-decoration: underline;
}

.registration-form__payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 10px);
  padding-top: 16px;
  white-space: nowrap;
}

.registration-form__payment-methods img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.registration-form__payment-methods-link {
  display: block;
  width: fit-content;
  margin: 8px auto 0;
  color: #c69700;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}

.header-account-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-account-actions--mobile {
  display: none;
}

.header-account-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.header-account-actions__login {
  color: #2a0874;
}

.header-account-actions__signup {
  border: 1px solid #2a0874;
  background: #ffdc00;
  color: #2a0874;
}

header .header-container > div {
  gap: 16px;
}

.signup-page {
  min-height: 100vh;
  padding: 144px 20px 72px;
  background: #fff;
  color: #292929;
}

.signup-page__section {
  display: flex;
  justify-content: center;
}

.signup-page__card {
  width: min(100%, 620px);
  margin-top: 32px;
  padding: 36px;
  border: 1px solid #454545;
  border-radius: 24px;
  background: #292929;
}

.signup-page__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid #5a5a5a;
  border-radius: 999px;
  background: #3b3b3b;
}

.signup-page__tab {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.signup-page__tab[aria-selected="true"] {
  background: #ffdc00;
  color: #26006b;
}

.signup-page__panel {
  padding-top: 58px;
}

.signup-page__panel h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.12;
  text-align: center;
}

.signup-page__intro {
  margin: 16px 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  text-align: center;
}

.signup-page__login-form {
  display: grid;
  gap: 12px;
}

.signup-page__login-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
}

.signup-page__login-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.signup-page__login-form input:focus {
  border-color: #ffdc00;
  box-shadow: 0 0 0 3px rgba(255, 220, 0, 0.2);
}

.signup-page__login-form input[aria-invalid="true"] {
  border-color: #ff7070;
}

.signup-page__login-form button {
  min-height: 56px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: #ffdc00;
  color: #26006b;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.signup-page__field-error {
  margin: -6px 0 0;
  color: #ff9d9d;
  font-size: 13px;
}

.signup-page__success {
  margin: 0;
  color: #c4f7c9;
  font-size: 14px;
  text-align: center;
}

.signup-page__registration {
  margin-top: 30px;
}

.signup-page__registration #registration-form {
  color: #fff;
}

.signup-page__registration #registration-form form {
  padding: 22px;
  border: 1px solid #5a5a5a;
  border-radius: 18px;
  background: #3b3b3b;
}

.signup-page__registration #registration-form input:not([type="submit"]),
.signup-page__registration #registration-form select {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.34) !important;
  background: #fff !important;
  color: #240067 !important;
}

.signup-page__registration #registration-form button[type="submit"],
.signup-page__registration #registration-form input[type="submit"] {
  min-height: 56px;
  border-radius: 999px !important;
  background: #ffdc00 !important;
  color: #26006b !important;
}

.signup-page__registration .registration-form__consent {
  padding: 16px 16px 0;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.signup-page__registration .registration-form__consent a,
.signup-page__registration .registration-form__payment-methods-link {
  color: #ffdc00;
}

.signup-page__registration .registration-form__payment-methods {
  padding-top: 18px;
}

.signup-page__registration .registration-form__payment-methods img[alt="Apple Pay"] {
  box-sizing: content-box;
  padding: 5px;
  border-radius: 5px;
  background: #fff;
}

@media (max-width: 47.98rem) {
  .header-account-actions--desktop {
    display: none;
  }

  .header-account-actions--mobile {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .header-account-actions {
    gap: 5px;
  }

  .header-account-actions a {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .header-account-actions__login svg {
    width: 15px;
    height: 15px;
  }

  .signup-page {
    padding: 108px 14px 40px;
  }

  .signup-page__card {
    padding: 34px;
    border-radius: 20px;
  }

  .signup-page__panel {
    padding-top: 52px;
  }

  .signup-page__registration #registration-form form {
    padding: 22px;
  }
}

@media (max-width: 47.98rem) {
  .hero-registration {
    display: flex;
    flex-direction: column;
  }

  .hero-registration h1 {
    order: 1;
  }

  .hero-registration > div {
    order: 2;
  }

  .hero-registration > p {
    order: 3;
  }

  .registration-form__payment-methods img {
    height: clamp(12px, 4.5vw, 19px);
    max-width: calc((100% - 20px) / 5);
  }
}

@media (max-width: 63.98rem) {
  .mobile-menu {
    top: 76px;
    left: 0;
    width: 100%;
    min-width: 0;
    min-height: 0;
    max-height: calc(100dvh - 76px);
    padding: 24px 16px;
    border-radius: 0;
    translate: 0 0;
    scale: 1;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    overflow-y: auto;
  }
}

.pageloader {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(255, 255, 255, 0.35);
  z-index: 9999;
}

.pageloader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(15, 23, 42, 0.14);
  border-top-color: rgba(15, 23, 42, 0.65);
  border-radius: 999px;
  animation: registration-loader-spin 0.8s linear infinite;
}

@keyframes registration-loader-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#toast-container > .toast {
  z-index: 9999 !important;
}

.suggestion {
  cursor: pointer;
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .pageloader::after {
    animation: none;
  }
}

.brazil-seo-section {
  padding-block: 2rem 3rem;
}

.brazil-seo-section h2 {
  max-width: 1120px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.12;
}

.brazil-seo-grid {
  align-items: stretch;
  gap: 1.25rem;
}

.brazil-seo-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.5;
}

.brazil-seo-card p {
  margin-bottom: 0;
}

.brazil-seo-card p:first-child {
  line-height: 1.35;
}

[data-theme="black"] .brazil-seo-card {
  color: #fff;
}

[data-theme="black"] .brazil-seo-card p:last-child {
  color: rgba(255, 255, 255, 0.86);
}

@media (min-width: 80rem) {
  .brazil-seo-section {
    padding-block: 2.75rem 4.5rem;
  }

  .brazil-seo-section h2 {
    margin-bottom: 3.25rem;
  }

  .brazil-seo-grid {
    gap: 2rem;
  }

  .brazil-seo-card {
    min-height: 250px;
  }
}

@media (max-width: 47.98rem) {
  .brazil-seo-section {
    padding-block: 2.5rem;
  }

  .brazil-seo-section h2 {
    margin-bottom: 1.5rem;
  }

  .brazil-seo-card {
    min-height: 0;
  }
}

/* Предотвращение нежелательного поведения */
* {
  box-sizing: border-box;
}

/* Последние штрихи для совместимости */
.iti__selected-dial-code {
  color: var(--form-black);
}

/* Z-index контроль */
.comment-modal,
.modal-content {
  z-index: 10000;
}

/* =============================
   ДЕБАГ И МОНИТОРИНГ
   ============================= */

/* Стили для отладки (если DEBUG_MODE включен в script.js) */
[data-debug="true"] {
  outline: 2px dashed #ff6b6b;
  outline-offset: 2px;
}

/* Индикатор для полей с ошибками валидации */
[data-validation-error="true"] {
  position: relative;
}

[data-validation-error="true"]::after {
  content: '!';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: var(--form-danger);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  z-index: 1;
}

/* Investment calculator (Arbinio logic, Valtrevia theme) */
.calculator-section {
  --calc-range-fill: #eed145;
  --calc-range-track: #707070;
  --calc-range-thumb-border: #eed145;
}

.calculator__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.calculator__controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calculator__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.calculator__value {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #eed145;
}

.calculator__range {
  width: 100%;
  appearance: none;
  height: 10px;
  border-radius: 999px;
  background: var(--calc-range-track);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.calculator__range::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
}

.calculator__range::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: transparent;
}

.calculator__range::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -6px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--calc-range-thumb-border);
  box-shadow: 0 0 0 2px #111, 0 2px 10px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.calculator__range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--calc-range-thumb-border);
  box-shadow: 0 0 0 2px #111, 0 2px 10px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.calculator__range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.calculator__result {
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: rgba(238, 209, 69, 0.18);
  border: 2px solid rgba(238, 209, 69, 0.55);
}

.calculator__result-main {
  text-align: center;
  margin-bottom: 1.5rem;
}

.calculator__result-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.calculator__result-total {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: #eed145;
}

.calculator__result-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

.calculator__stat-label {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.calculator__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 900px) {
  .calculator__wrapper {
    grid-template-columns: 1fr;
  }
}

.nav-dropdown-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown-arrow {
  transition: transform .2s ease;
}
.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;        
  padding: 8px;              
  margin-top: 8px;          
  background-color: #ffffff; 
  border-radius: 12px;      
  box-shadow: 
    0 10px 25px -5px rgba(0, 0, 0, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  z-index: 100;
}
.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -10px; 
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown-panel ul li {
  width: 100%;
}

.nav-dropdown-panel ul li a{
display: flex;
align-items: start;
text-align: left;
padding: 8px 14px;
color: #1f2937;          
text-decoration: none;
font-size: 14px;
font-weight: 500;
border-radius: 8px;       
transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-panel ul li a:hover {
  background-color: #f3f4f6; 
  color: #111827;
}

.about-company-profile {
	padding: 20px 0 48px;
}

.about-company-profile__title {
	margin: 0 0 24px;
	color: #FFFFFF;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}

.about-company-profile__table {
	overflow: hidden;
	border: 1px solid #d5e1ed;
	border-radius: 6px;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.about-company-profile__row {
	display: grid;
	grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
	align-items: stretch;
}

.about-company-profile__row + .about-company-profile__row {
	border-top: 1px solid rgba(94, 137, 251, 0.2);
}

.about-company-profile__label,
.about-company-profile__value {
	padding: 22px 24px;
	font-size: 16px;
	line-height: 1.45;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.about-company-profile__label {
	background: #6ac05b;
	color: #ffffff;
	font-weight: 700;
}

.about-company-profile__value {
	background: #ffffff;
	color: #080808;
	font-weight: 500;
}

.about-company-profile__value a {
	color: inherit;
	text-decoration: none;
}

.about-company-profile__value a:hover {
	text-decoration: underline;
}

.about-company-timeline {
	padding: 8px 0 48px;
	scroll-margin-top: 120px;
}

.about-company-timeline__title {
	margin: 0 0 24px;
	color: #FFFFFF;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}

.about-company-timeline__list {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.about-company-timeline__item {
	display: grid;
	grid-template-columns: 72px 28px minmax(0, 1fr);
	column-gap: 18px;
}

.about-company-timeline__year {
	padding-top: 2px;
	color: #6ac05b;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-align: right;
}

.about-company-timeline__marker {
	position: relative;
	display: flex;
	justify-content: center;
}

.about-company-timeline__marker::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	transform: translateX(-50%);
	background: #6ac05b;
}

.about-company-timeline__dot {
	position: relative;
	z-index: 1;
	display: block;
	width: 10px;
	height: 10px;
	margin-top: 4px;
	border-radius: 50%;
	background: #6ac05b;
	box-shadow: 0 0 0 5px rgba(94, 137, 251, 0.14);
}

.about-company-timeline__content {
	padding: 0 0 34px;
}

.about-company-timeline__item-title {
	margin: 0 0 12px;
	color: #FFFFFF;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.about-company-timeline__text {
	margin: 0;
	color: #acb2c0;
	font-size: 15px;
	line-height: 1.7;
}

@media (max-width: 767px) {
	.about-hero__columns {
		gap: 24px;
	}

	.about-hero__content {
		padding-right: 0;
	}

	.licenses-hero .cta_wrapper .left_side h1.wp-block-heading.has-x-large-font-size {
		font-size: 24px !important;
		line-height: 1.15;
	}

	.page_section_gap h2.wp-block-heading.has-x-large-font-size {
		font-size: 24px !important;
		line-height: 1.2;
	}

	.page_section_gap {
		margin-top: 40px;
	}

	.about-company-profile {
		padding: 12px 0 36px;
	}

	.about-company-profile__title {
		margin-bottom: 18px;
		font-size: 28px;
		text-align: left;
	}

	.about-company-profile__table {
		border-radius: 6px;
	}

	.about-company-profile__row {
		grid-template-columns: 1fr;
	}

	.about-company-profile__label,
	.about-company-profile__value {
		padding: 16px 18px;
		font-size: 16px;
	}

	.about-company-profile__value {
		border-top: 1px solid rgba(94, 137, 251, 0.2);
	}

	.about-company-timeline {
		padding: 0 0 36px;
		scroll-margin-top: 90px;
	}

	.about-company-timeline__title {
		margin-bottom: 20px;
		text-align: left;
	}

	.about-company-timeline__item {
		grid-template-columns: 18px minmax(0, 1fr);
		column-gap: 18px;
	}

	.about-company-timeline__year {
		grid-column: 2;
		padding: 0 0 10px;
		font-size: 14px;
		text-align: left;
	}

	.about-company-timeline__marker {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.about-company-timeline__content {
		grid-column: 2;
		padding: 0 0 30px;
	}

	.about-company-timeline__item-title {
		font-size: 22px;
	}

	.about-company-timeline__text {
		font-size: 16px;
		line-height: 1.6;
	}

	.licenses-table.table thead tr th {
		font-size: 12px;
		line-height: 1.25;
		padding: 8px 6px;
	}

	.licenses-table.table td,
	.licenses-table.table th {
		padding: 10px 8px;
		font-size: 13px;
	}
}


/* User Steps Section */
.user-steps-section {
  padding-bottom: 50px;
}

.section-user-steps__title {
  color: #000;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}
.user-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
.user-steps__item {
  display: flex;
  gap: 24px;
  align-items: center;
}
.user-steps__head {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: max(280px, 25%);
  background-image: linear-gradient(to bottom, #e7eff8, #ecf2f3);
  border: 1px solid rgb(9 110 103 / 9%);
  border-radius: 80px;
  padding: 12px;
}
.user-steps__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  background: #6ac05b;
  box-shadow: 0 4px 15px rgb(129, 153, 225, 0.4);
}
.user-steps__title {
  color: #6ac05b;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.user-steps__text {
  flex: 1;
  display: flex;
  align-items: center;
}
.user-steps__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}
.section-user-steps__btn {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  padding: 18px 40px;
  background: #6ac05b;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px (129, 153, 225, 0.4);
}
.section-user-steps__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px (129, 153, 225, 0.4);
  background: #6ac05b;
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .user-steps {
    gap: 8px;
  }
  .section-user-steps {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .section-user-steps__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .user-steps__item {
    gap: 16px;
    flex-direction: column;
    text-align: center;
  }
  .user-steps__head {
    width: 100%;
  }

  .user-steps__number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .user-steps__title {
    font-size: 16px;
  }

  .user-steps__text {
    width: 100%;
  }
  .user-steps__text p {
    font-size: 13px;
  }
}

/* footer */
.hero-visual-mobile-hidden {
  display: none;
}

@media (min-width: 768px) {
  .hero-visual-mobile-hidden {
    display: block;
    margin-top: 24px;
  }

  .hero-registration {
    margin-top: 24px;
  }
}

@media (min-width: 1024px) {
  .hero-visual-mobile-hidden {
    margin-top: 40px;
  }

  .hero-registration {
    margin-top: 40px;
  }
}

.footer-top {
  display: grid;
  gap: 32px;
}

.footer-top__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 32px;
  text-align: left;
}

.footer-nav__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.footer-nav__title {
  font-size: 14px;
  font-weight: 600;
}

.footer-nav__title--link {
  font-weight: 400;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .footer-top__row {
    justify-content: space-between;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ==========================================
   KYC Page Design Styles (BEM)
   ========================================== */

:root {
  --kyc-bg-black: #000000;
  --kyc-card-dark: #1e1e1e;
  --kyc-accent-green: #71d860;
  --kyc-accent-yellow: #ebd047;
  --kyc-text-primary: #ffffff;
  --kyc-text-secondary: #a3a3a3;
  --kyc-border-color: #2b2b2b;
  --kyc-radius: 16px;
  --kyc-font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Page Layout */
.kyc-page {
  background-color: var(--kyc-bg-black);
  color: var(--kyc-text-primary);
  font-family: var(--kyc-font-family);
  min-height: 100vh;
  padding: 232px 20px 60px 20px;
  box-sizing: border-box;
}

.kyc-page__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Section */
.kyc-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.kyc-page__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--kyc-text-primary);
  letter-spacing: -0.02em;
}

.kyc-page__intro {
  background: var(--kyc-card-dark);
  border: 1px solid var(--kyc-border-color);
  border-radius: var(--kyc-radius);
  padding: 32px;
  text-align: left;
}

.kyc-page__text {
  color: var(--kyc-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.kyc-page__text:last-child {
  margin-bottom: 0;
}

/* Content Blocks & Sections */
.kyc-page__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.kyc-section {
  border-radius: var(--kyc-radius);
  padding: 36px;
  box-sizing: border-box;
}

.kyc-section--dark {
  background-color: var(--kyc-card-dark);
  border: 1px solid var(--kyc-border-color);
}

.kyc-section--accent {
  background-color: var(--kyc-accent-green);
  color: #000000;
}

.kyc-section--accent .kyc-section__title,
.kyc-section--accent .kyc-section__text,
.kyc-section--accent .kyc-list__item {
  color: #000000;
}

.kyc-section--accent .kyc-list__item::before {
  background-color: #000000;
}

.kyc-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.kyc-section__text {
  color: var(--kyc-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.kyc-section__text:last-child {
  margin-bottom: 0;
}

/* Lists */
.kyc-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
}

.kyc-list__item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--kyc-text-secondary);
  line-height: 1.5;
}

.kyc-list__item::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--kyc-accent-green);
  border-radius: 50%;
}

/* Responsive Grid for Cards */
.kyc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.kyc-card {
  background-color: #141414;
  border: 1px solid var(--kyc-border-color);
  border-radius: 12px;
  padding: 24px;
}

.kyc-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--kyc-accent-yellow);
}

.kyc-card__text {
  font-size: 0.95rem;
  color: var(--kyc-text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.kyc-card__note {
  font-size: 0.875rem;
  color: #e57373;
  margin-top: 16px;
  font-style: italic;
}

/* Steps Process */
.kyc-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.kyc-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #141414;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--kyc-border-color);
}

.kyc-step__number {
  background-color: var(--kyc-accent-yellow);
  color: #000000;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 14px;
  border-radius: 8px;
  flex-shrink: 0;
}

.kyc-step__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--kyc-text-primary);
}

.kyc-step__text {
  margin: 0;
  color: var(--kyc-text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer & Support Block */
.kyc-footer {
  background: linear-gradient(135deg, #1e1e1e 0%, #292929 100%);
  border: 1px solid var(--kyc-border-color);
  border-radius: var(--kyc-radius);
  padding: 36px;
  text-align: center;
}

.kyc-footer__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}

.kyc-footer__text {
  color: var(--kyc-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.kyc-footer__link {
  color: var(--kyc-accent-yellow);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.kyc-footer__link:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) { 
  .kyc-page {
    padding-top: 182px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .kyc-page {
    padding: 124px 16px 30px 16px;
  }
  
  .kyc-page__title {
    font-size: 1.8rem;
  }
  
  .kyc-section {
    padding: 24px;
  }

  .kyc-step {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==========================================
   Steps Page Design Styles 
   ========================================== */

:root {
  --e-bg-black: #000000;
  --e-card-dark: #1e1e1e;
  --e-card-inner: #141414;
  --e-accent-green: #71d860;
  --e-accent-yellow: #ebd047;
  --e-text-primary: #ffffff;
  --e-text-secondary: #a3a3a3;
  --e-border-color: #2b2b2b;
  --e-radius: 16px;
  --e-font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Page Base */
.steps-page {
  background-color: var(--e-bg-black);
  color: var(--e-text-primary);
  font-family: var(--e-font-family);
  min-height: 100vh;
  padding: 232px 20px 60px 20px;
  box-sizing: border-box;
}

.steps-page__container {
  max-width: 900px;
  margin: 0 auto;
}

/* Page Header */
.steps-page__header {
  text-align: center;
  margin-bottom: 40px;
}

.steps-page__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--e-text-primary);
  letter-spacing: -0.02em;
}

.steps-page__subtitle {
  font-size: 1.25rem;
  color: var(--e-accent-yellow);
  margin: 0 0 24px 0;
  font-weight: 500;
}

.steps-page__intro {
  background: var(--e-card-dark);
  border: 1px solid var(--e-border-color);
  border-radius: var(--e-radius);
  padding: 28px;
  text-align: left;
}

.steps-page__text {
  color: var(--e-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.steps-page__text:last-child {
  margin-bottom: 0;
}

/* Content Layout */
.steps-page__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card Block */
.steps-card {
  background-color: var(--e-card-dark);
  border: 1px solid var(--e-border-color);
  border-radius: var(--e-radius);
  padding: 32px;
  box-sizing: border-box;
}

.steps-card--accent {
  background-color: var(--e-accent-green);
  color: #000000;
  border: none;
}

.steps-card--accent .steps-card__title,
.steps-card--accent .steps-card__text {
  color: #000000;
}

.steps-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.steps-card__badge {
  background-color: var(--e-accent-yellow);
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: 8px;
  flex-shrink: 0;
}

.steps-card__badge--dark {
  background-color: #000000;
  color: var(--e-accent-yellow);
}

.steps-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.steps-card__text {
  color: var(--e-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.steps-card__text--muted {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 8px;
}

/* Subblock inside card */
.steps-subblock {
  background-color: var(--e-card-inner);
  border: 1px solid var(--e-border-color);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

.steps-subblock--dark {
  background-color: rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.1);
}

.steps-subblock__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 16px 0;
}

/* Lists */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.steps-list__item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: inherit;
}

.steps-list:not(.steps-list--numbered) .steps-list__item::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: var(--e-accent-yellow);
  border-radius: 50%;
}

.steps-list--numbered {
  counter-reset: steps-counter;
}

.steps-list--numbered .steps-list__item {
  counter-increment: steps-counter;
}

.steps-list--numbered .steps-list__item::before {
  content: counter(steps-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--e-accent-yellow);
}

/* Buttons & Actions */
.steps-card__action,
.steps-cta__action {
  margin-top: 24px;
}

.steps-button {
  display: inline-block;
  background-color: var(--e-accent-yellow);
  color: #000000;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.steps-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.steps-button--large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Warning Section */
.steps-warning {
  background-color: #261a1a;
  border: 1px solid #522525;
  border-radius: var(--e-radius);
  padding: 32px;
}

.steps-warning__title {
  color: #ff6b6b;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 16px;
}

.steps-warning__text {
  color: #e0d0d0;
  line-height: 1.6;
  margin-bottom: 12px;
}

.steps-warning__highlight {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 16px 0;
}

/* CTA Footer Section */
.steps-cta {
  background: linear-gradient(135deg, #1e1e1e 0%, #292929 100%);
  border: 1px solid var(--e-border-color);
  border-radius: var(--e-radius);
  padding: 40px;
  text-align: center;
}

.steps-cta__title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}

.steps-cta__text {
  color: var(--e-text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 12px auto;
}

@media (max-width: 1024px) { 
  .steps-page {
    padding-top: 182px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .steps-page {
    padding: 124px 16px 30px 16px;
  }
  
  .steps-page__title {
    font-size: 1.8rem;
  }
  
  .steps-card {
    padding: 20px;
  }
  
  .steps-button {
    width: 100%;
    box-sizing: border-box;
  }
}

/* ==========================================
   Articles Page Design Styles
   ========================================== */

:root {
  --a-bg-black: #000000;
  --a-card-dark: #1e1e1e;
  --a-card-inner: #141414;
  --a-accent-green: #71d860;
  --a-accent-yellow: #ebd047;
  --a-text-primary: #ffffff;
  --a-text-secondary: #a3a3a3;
  --a-border-color: #2b2b2b;
  --a-radius: 16px;
  --a-font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Page Base Layout */
.articles-page {
  background-color: var(--a-bg-black);
  color: var(--a-text-primary);
  font-family: var(--a-font-family);
  min-height: 100vh;
  padding: 232px 20px 60px 20px;
  box-sizing: border-box;
}

.articles-page__container {
  max-width: 960px;
  margin: 0 auto;
}

/* Header */
.articles-page__header {
  text-align: center;
  margin-bottom: 40px;
}

.articles-page__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--a-text-primary);
}

.articles-page__subtitle {
  font-size: 1.2rem;
  color: var(--a-accent-yellow);
  margin: 0 0 24px 0;
}

.articles-page__intro {
  background: var(--a-card-dark);
  border: 1px solid var(--a-border-color);
  border-radius: var(--a-radius);
  padding: 28px;
  text-align: left;
}

.articles-page__text {
  color: var(--a-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.articles-page__text:last-child {
  margin-bottom: 0;
}

/* Content Stack */
.articles-page__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Article Cards */
.article-card {
  background-color: var(--a-card-dark);
  border: 1px solid var(--a-border-color);
  border-radius: var(--a-radius);
  padding: 36px;
  box-sizing: border-box;
}

.article-card--accent {
  background-color: var(--a-accent-green);
  color: #000000;
  border: none;
}

.article-card--accent .article-card__title,
.article-card--accent .article-card__subtitle,
.article-card--accent .article-card__text,
.article-card--accent .article-card__h3,
.article-card--accent .article-card__conclusion {
  color: #000000;
}

.article-card__header {
  margin-bottom: 24px;
}

.article-card__tag {
  display: inline-block;
  background-color: var(--a-accent-yellow);
  color: #000000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.article-card__tag--dark {
  background-color: #000000;
  color: var(--a-accent-yellow);
}

.article-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.article-card__subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin: 0;
}

.article-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-card__text {
  color: var(--a-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.article-card__section {
  background-color: var(--a-card-inner);
  border: 1px solid var(--a-border-color);
  border-radius: 12px;
  padding: 20px;
}

.article-card--accent .article-card__section {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.08);
}

.article-card__h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--a-text-primary);
}

/* Two Column Grid inside Cards */
.article-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 12px 0;
}

.article-card__box {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
}

/* Lists */
.article-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card__item {
  background-color: var(--a-card-inner);
  border: 1px solid var(--a-border-color);
  border-radius: 12px;
  padding: 20px;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-list__item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--a-text-secondary);
}

.article-list__item::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--a-accent-yellow);
  border-radius: 50%;
}

.article-list__item strong {
  color: var(--a-text-primary);
}

/* Conclusion Block */
.article-card__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--a-border-color);
}

.article-card--accent .article-card__footer {
  border-top-color: rgba(0, 0, 0, 0.15);
}

.article-card__conclusion {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: var(--a-text-secondary);
}

/* Articles Navigation / Continue Learning */
.articles-nav {
  background-color: var(--a-card-dark);
  border: 1px solid var(--a-border-color);
  border-radius: var(--a-radius);
  padding: 32px;
}

.articles-nav__title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 8px;
}

.articles-nav__text {
  color: var(--a-text-secondary);
  margin-bottom: 20px;
}

.articles-nav__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.articles-nav__card {
  display: block;
  background-color: var(--a-card-inner);
  border: 1px solid var(--a-border-color);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.articles-nav__card:hover {
  border-color: var(--a-accent-yellow);
  transform: translateY(-2px);
}

.articles-nav__card-title {
  color: var(--a-accent-yellow);
  font-size: 1.1rem;
  margin: 0 0 8px 0;
}

.articles-nav__card-text {
  color: var(--a-text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* CTA Block */
.articles-cta {
  background: linear-gradient(135deg, #1e1e1e 0%, #292929 100%);
  border: 1px solid var(--a-border-color);
  border-radius: var(--a-radius);
  padding: 40px;
  text-align: center;
}

.articles-cta__title {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.articles-cta__text {
  color: var(--a-text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 24px auto;
  line-height: 1.5;
}

.articles-button {
  display: inline-block;
  background-color: var(--a-accent-yellow);
  color: #000000;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.articles-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 1024px) { 
  .articles-page {
    padding-top: 182px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .articles-page {
    padding: 124px 16px 30px 16px;
  }

  .article-card {
    padding: 24px;
  }

  .articles-button {
    width: 100%;
    box-sizing: border-box;
  }
}
