/* G L O B A L S */
:root {
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --color-text: #111827;
    --color-text-secondary: #6B7280;
    --color-background: #F9FAFB;
    --color-accent: #4f46e5;
    --color-border: #E5E7EB;
    --container-width: 1240px;
    --container-padding: 20px;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #312e81; /* Darker accent */
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

/* H E A D E R */
.header {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background-color: rgba(249, 250, 251, 0.8);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
}

.header__logo:hover {
    color: var(--color-text);
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-size: 16px;
    color: var(--color-text-secondary);
    font-weight: 700;
    padding: 8px 0;
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.header__nav-link:hover {
    color: var(--color-text);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__nav-link--cta {
    background-color: var(--color-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.header__nav-link--cta:hover {
    background-color: #312e81;
    color: white;
}

.header__nav-link--cta::after {
    display: none;
}

.header__burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
}

/* F O O T E R */
.footer {
    background-color: #1F2937; /* Darker grey for footer */
    color: #D1D5DB; /* Lighter grey for footer text */
    padding: 80px 0 0;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 60px;
}

.footer__column--brand {
    grid-column: span 1;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    display: block;
}

.footer__logo:hover {
    color: white;
}

.footer__tagline {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.footer__heading {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: #9CA3AF; /* Footer link color */
    font-size: 15px;
}
.footer__link:hover {
    color: white;
}

.footer__list--contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer__icon {
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
    color: #9CA3AF;
}

.footer__bottom {
    border-top: 1px solid #374151; /* Footer border color */
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* R E S P O N S I V E */
@media (max-width: 1024px) {
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none; /* Will implement mobile menu logic later */
    }
    .header__burger-menu {
        display: block;
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__list--contacts li {
        justify-content: center;
        text-align: left;
    }
}

/* H E R O */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 81px); /* 100vh минус высота хедера */
    padding: 80px 0;
    overflow: hidden;
}

.hero__background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 1px;
    background-image: radial-gradient(circle at center, rgba(79, 70, 229, 0.1), transparent 30%);
    background-size: 200% 200%; /* Увеличиваем размер для плавности */
    background-position: center center;
    transition: background-position 0.4s ease-out;
}

.hero__background-grid::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(to right, var(--color-background) 0%, transparent 20%, transparent 80%, var(--color-background) 100%),
        linear-gradient(to bottom, var(--color-background) 0%, transparent 20%, transparent 80%, var(--color-background) 100%);
}

.hero__container {
    z-index: 1;
}

.hero__content {
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
}

.hero__title,
.hero__subtitle,
.hero__actions {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero__content.is-visible .hero__title {
    transition-delay: 0.2s;
}
.hero__content.is-visible .hero__subtitle {
    transition-delay: 0.4s;
}
.hero__content.is-visible .hero__actions {
    transition-delay: 0.6s;
}

.hero__content.is-visible .hero__title,
.hero__content.is-visible .hero__subtitle,
.hero__content.is-visible .hero__actions {
    opacity: 1;
    transform: translateY(0);
}

.hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero__button {
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero__button--primary {
    background-color: var(--color-accent);
    color: white;
}

.hero__button--primary:hover {
    background-color: #312e81;
    color: white;
    transform: translateY(-2px);
}

.hero__button--secondary {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.hero__button--secondary:hover {
    background-color: var(--color-background);
    border-color: var(--color-text);
    transform: translateY(-2px);
}

/* R E S P O N S I V E for HERO */
@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 73px); /* Новая высота хедера для моб. */
        padding: 60px 0;
    }
    .hero__title {
        font-size: 36px;
    }
    .hero__subtitle {
        font-size: 16px;
    }
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero__button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* S E C T I O N  G L O B A L S */
.section {
    padding: 100px 0;
}

.section:nth-child(odd) {
    background-color: white; /* Чередование фона для визуального разделения */
}

.section__header {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section__title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}


/* A N A L Y T I C S  S E C T I O N */
.analytics__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.analytics__card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* For animation */
    opacity: 0;
    transform: translateY(30px);
}

.analytics__card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Staggered animation delay */
.analytics__card.is-visible:nth-child(2) {
    transition-delay: 0.2s;
}
.analytics__card.is-visible:nth-child(3) {
    transition-delay: 0.4s;
}


.analytics__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.analytics__card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EEF2FF; /* Light accent background */
    color: var(--color-accent);
    border-radius: 8px;
    margin-bottom: 24px;
}

.analytics__card-icon i {
    width: 28px;
    height: 28px;
}

.analytics__card-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.analytics__card-text {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    flex-grow: 1; /* Pushes the link to the bottom */
}

.analytics__card-link {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.analytics__card-link i {
    transition: transform 0.3s ease;
}

.analytics__card-link:hover i {
    transform: translateX(4px);
}

/* R E S P O N S I V E for ANALYTICS */
@media (max-width: 1024px) {
    .analytics__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .section__title {
        font-size: 32px;
    }
    .section__subtitle {
        font-size: 16px;
    }
}

/* S T R A T E G I E S  S E C T I O N */
.strategies {
    background-color: var(--color-background); /* Используем основной фон */
}

.strategies__timeline {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}

/* Вертикальная линия таймлайна */
.strategies__timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: var(--color-border);
    border-radius: 2px;
}

.strategies__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    position: relative; /* для z-index */

    /* For animation */
    opacity: 0;
    transform: translateY(50px);
}

.strategies__item.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.strategies__item:nth-child(2).is-visible { transition-delay: 0.2s; }
.strategies__item:nth-child(3).is-visible { transition-delay: 0.4s; }


.strategies__item-content {
    position: relative;
    padding: 20px;
}

.strategies__item--reverse .strategies__item-content {
    order: 2;
}
.strategies__item--reverse .strategies__item-visual {
    order: 1;
}

.strategies__item-number {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 140px;
    font-weight: 800;
    color: #F3F4F6; /* Very light grey */
    z-index: -1;
    line-height: 1;
}

.strategies__item-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.strategies__item-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.strategies__item-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    width: 100%;
}

/* R E S P O N S I V E for STRATEGIES */
@media (max-width: 1024px) {
    .strategies__timeline::before {
        left: 20px;
        transform: none;
    }
    .strategies__item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .strategies__item--reverse .strategies__item-content,
    .strategies__item--reverse .strategies__item-visual {
        order: initial;
    }
    .strategies__item-content {
        padding-left: 60px; /* Оставляем место для линии */
    }
    .strategies__item-visual {
        padding-left: 60px;
    }
    .strategies__item-number {
        left: 40px;
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    .strategies__timeline {
        gap: 60px;
    }
    .strategies__item-title {
        font-size: 24px;
    }
}

/* C A S E S  S E C T I O N */
.cases {
    background-color: white;
}

.cases__slider {
    position: relative;
    /* For animation */
    opacity: 0;
    transform: translateY(50px);
}
.cases__slider.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.cases__slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cases__slide {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--color-background);
    border-radius: 16px;
    overflow: hidden;
}

.cases__slide-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cases__slide-content {
    padding: 60px;
}

.cases__slide-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cases__slide-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cases__slide-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cases__slide-metrics {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
}

.cases__metric-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-accent);
}

.cases__metric-label {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.cases__slider-controls {
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.cases__slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.cases__slider-btn:hover {
    background-color: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    transform: scale(1.1);
}
.cases__slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
    background-color: #F3F4F6;
    color: var(--color-text-secondary);
}


/* R E S P O N S I V E for CASES */
@media (max-width: 1360px) { /* When container + button padding is too large */
    .cases__slider-controls {
        top: auto;
        bottom: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
    }
}

@media (max-width: 768px) {
    .cases__slide {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .cases__slide-visual {
        height: 250px;
    }
    .cases__slide-content {
        padding: 32px;
    }
    .cases__slide-title {
        font-size: 24px;
    }
    .cases__slide-metrics {
        gap: 24px;
    }
    .cases__metric-value {
        font-size: 28px;
    }
}

/* P R O C E S S  S E C T I O N */
.process {
    background-color: var(--color-background);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process__item {
    text-align: center;
    padding: 24px;
    position: relative;

    /* For animation */
    opacity: 0;
    transform: translateY(40px);
}

.process__item.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Staggered animation delay */
.process__item.is-visible:nth-child(2) { transition-delay: 0.1s; }
.process__item.is-visible:nth-child(3) { transition-delay: 0.2s; }
.process__item.is-visible:nth-child(4) { transition-delay: 0.3s; }


.process__item-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid var(--color-border);
    color: var(--color-accent);
    border-radius: 50%;
}

.process__item-icon i {
    width: 32px;
    height: 32px;
}

.process__item-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.process__item-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Connecting arrows on desktop */
@media (min-width: 1024px) {
    .process__item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 32px; /* Vertically align with icon center */
        right: -32px; /* Position between items */
        width: 32px;
        height: 32px;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 17L18 12L13 7' stroke='%23E5E7EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
        background-size: contain;
        background-repeat: no-repeat;
        transform: translateX(50%);
    }
}

/* R E S P O N S I V E for PROCESS */
@media (max-width: 1023px) {
    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process__grid {
        grid-template-columns: 1fr;
    }
}
/* C O N T A C T  S E C T I O N */
.contact {
    background-color: white;
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
    background-color: var(--color-background);
    padding: 60px;
    border-radius: 16px;
}

.contact__form {
    position: relative;
}

#form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__label {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form__input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form__input:invalid {
    /* Basic HTML5 validation style */
    border-color: #EF4444; 
}


.form__group--captcha {
    max-width: 200px;
}

.form__group--checkbox {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.form__group--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
}

.form__label-checkbox {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 400;
}
.form__label-checkbox a {
    text-decoration: underline;
}

.form__button {
    width: 100%;
    padding: 16px;
    margin-top: 24px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
    background-color: var(--color-accent);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.form__button:hover {
    background-color: #312e81;
}

.form__success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    display: none; /* Initially hidden */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.form__success-icon {
    color: #10B981; /* Green */
    margin-bottom: 16px;
}
.form__success-icon i {
    width: 64px;
    height: 64px;
}
.form__success-message h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact__info h3 {
    font-size: 24px;
    margin-bottom: 16px;
}
.contact__info p {
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}
.contact__info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact__info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact__info-list a, .contact__info-list span {
    color: var(--color-text);
}


/* R E S P O N S I V E for CONTACT */
@media (max-width: 1024px) {
    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .contact__wrapper {
        padding: 32px;
    }
}

/* C O O K I E  P O P - U P */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: #1F2937; /* Dark background from footer */
    color: #D1D5DB;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 2000;
    transform: translateY(200%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cookie-popup.is-visible {
    transform: translateY(0);
}

.cookie-popup__text {
    font-size: 15px;
    line-height: 1.5;
}

.cookie-popup__text a {
    color: white;
    text-decoration: underline;
}

.cookie-popup__button {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    background-color: var(--color-accent);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.cookie-popup__button:hover {
    background-color: #312e81;
}

@media (max-width: 500px) {
    .cookie-popup {
        flex-direction: column;
        text-align: center;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

/* P A G E S  S T Y L E S (Privacy, Terms, etc.) */
.pages {
    padding: 80px 0;
    background-color: white;
}

.pages .container {
    max-width: 800px;
}

.pages h1,
.pages h2,
.pages h3 {
    margin-bottom: 24px;
    color: var(--color-text);
}

.pages h1 {
    font-size: 42px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.pages h2 {
    font-size: 28px;
    margin-top: 48px;
}

.pages h3 {
    font-size: 22px;
    margin-top: 32px;
}

.pages p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.pages ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.pages li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.pages a {
    color: var(--color-accent);
    text-decoration: underline;
}

.pages a:hover {
    color: #312e81;
}

.pages strong {
    color: var(--color-text);
    font-weight: 700;
}