@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

:root {
    --bg: #fff;
    --bg-secondary: rgba(241, 245, 249, 0.8);
    --bg-accent: #e2e8f0;

    --text: #020817;
    --text-secondary: #64748b;
    
    --accent: #3c83f6;
    --accent-gradient: linear-gradient(135deg, rgb(60, 131, 246), rgb(96, 165, 250));
    --accent-gradient-2: linear-gradient(135deg, rgb(99, 102, 241), rgb(139, 92, 246));
    --accent-gradient-3: linear-gradient(135deg, rgb(251, 146, 60), rgb(251, 191, 36));
    --hover-bg: #2563eb;
    --glow-shadow: 0 0 40px rgba(60, 131, 246, 0.4);
    --box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 131, 246, 0.2) 0px 10px 30px -5px;

    --header-bg: rgba(255, 255, 255, 0.949);

    --hero-bg: rgba(255, 255, 255, 0.9);
    --hero-gradient: linear-gradient(135deg, rgb(60, 131, 246), rgb(96, 165, 250));
    --hero-border: rgba(60, 131, 246, 0.2);

    --ok: #22c55e;
    --err: #ef4444;

    --alert-border: rgba(251, 146, 60, 0.3);
    --alert-bg: rgba(251, 146, 60, 0.1);
    --alert-1: #d97706;
    --alert-2: #92400e;
    --alert-err: #ef4444;
    --alert-ok: #22c55e;

    --bg-2: rgba(241, 245, 249, 0.6);
    --bg-3: rgba(241, 245, 249, 0.4);
    --text-3: #94a3b8;
    --border: #e2e8f0;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: grid;
    align-content: space-between;
}

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

.hide-link {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    opacity: 0;
}
/* ##### */
.not-found {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 16px 150px;
}
/* ##### */
.header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--bg-accent);
}
.header .container {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;

    transition: opacity 0.2s ease-out;
    &:hover {
        opacity: 0.8;
    }
}
.header-logo img {
    border-radius: 8px;
    width: 120px;
    height: 40px;
    object-fit: contain;
}
.header-logo span {
    color: transparent;
    background: var(--accent-gradient);
    background-clip: text;
    font-size: 24px;
    font-weight: 700;
}
.header ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 16px;
}
.header ul a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-out;

    &:hover {
        color: var(--accent);
    }
}
.header-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.header-regions,
.header-user {
    height: 36px;
    color: inherit;
    text-decoration: none;
    padding: 0 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;

    transition: background-color 0.2s ease-out;
    &:hover {
        background-color: var(--hover-bg);
    }
}
.header-regions svg,
.header-user svg,
.header-brg svg {
    width: 16px;
    height: 16px;
}
.header-user {
    border: 1px solid var(--bg-accent);
}
.header-brg {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--bg-accent);
    background-color: var(--hover-bg);
    display: none;
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 150;
    background-color: var(--bg);
    padding: 60px 16px 16px;
    transform: translateX(-100%);
    transition: transform 0.2s ease-out;
}
.nav.open {
    transform: translateX(0);
}
.nav-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav ul {
    display: grid;
    gap: 16px;
    list-style-type: none;
    text-align: center;
}
.nav a {
    text-decoration: none;
    font-size: 18px;
    color: inherit;
}
@media (max-width: 768px) {
    .header nav,
    .header-regions {
        display: none;
    }
    .header-btns {
        margin-left: auto;
    }
    .header-brg {
        display: flex;
    }
}
/* ##### */
.footer {
    background-color: var(--bg-accent);
    color: var(--text-secondary);
}
.footer .container {
    padding: 48px 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 32px;
}
.footer-info h2 {
    font-size: 24px;
    color: transparent;
    background: var(--accent-gradient);
    background-clip: text;
    margin-bottom: 16px;
}
.footer-info p {
    font-size: 14px;
    margin-bottom: 16px;
}
.footer-nav h3 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 16px;
}
.footer-nav ul  {
    list-style: none;
    display: grid;
    gap: 8px;
}
.footer-nav svg {
    display: inline-block;
    width: 16px;
    height: 16px;
}
.footer-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease-out;

    &:hover {
        color: var(--accent);
    }
}
.footer-rights {
    font-size: 12px;
    grid-column: span 4;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
    gap: 16px;
}
.footer-rights a {
    color: inherit;
}
.footer-rights p:nth-child(2) {
    justify-self: end;
}
.footer-rights-bot {
    grid-column: span 2;
    text-align: center;
}
@media (max-width: 768px) {
    .footer .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-rights {
        margin-top: 32px;
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-rights-bot {
        grid-column: span 1;
    }
    .footer-rights p:nth-child(2) {
        justify-self: center;
    }
}
/* ##### */
.grid-wrap {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .grid-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .grid-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* ##### */
.articles .container {
    padding: 64px 16px;
}
.articles-title {
    text-align: center;
    font-size: 36px;
    color: transparent;
    background: var(--accent-gradient-2);
    background-clip: text;
    margin-bottom: 8px;
}
.articles-desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-secondary);
}
.articles-item {
    width: 100%;
    max-width: 420px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg);
    border: 1px solid var(--bg-accent);

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--box-shadow);
    }
}
.articles-label-f {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 5px;
    font-size: 10px;
    display: block;
    width: max-content;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--accent-gradient-3);
    color: var(--text);
}
.articles-label-p {
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 5px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: max-content;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--accent-gradient);
    color: var(--text);
}
.articles-label-p svg {
    width: 10px;
    height: 10px;
}
.articles-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.articles-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-out;
}
.articles-item:hover .articles-img img {
    transform: scale(1.05);
}
.articles-item:hover .articles-img a {
    opacity: 0.8;
}
.articles-item:hover .articles-img a:hover {
    opacity: 1;
}
.articles-img a {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    border-radius: 6px;
    background-color: var(--text);
    color: var(--bg);
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease-out;
}
.articles-img a svg {
    width: 16px;
    height: 16px;
}
.articles-info {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 8px;
}
.articles-info h3 {
    font-size: 18px;
    grid-column: span 2;
    transition: color 0.2s ease-out;
}
.articles-item:hover .articles-info h3 {
    color: var(--accent);
} 
.articles-about {
    grid-column: span 2;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.articles-time,
.articles-date,
.articles-author {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}
.articles-time svg,
.articles-date svg,
.articles-author svg {
    width: 12px;
    height: 12px;
    color: var(--text-secondary);
}
.articles-category {
    grid-column: span 2;
    font-size: 12px;
    background-color: var(--bg-accent);
    padding: 2px 10px;
    border-radius: 20px;
    width: max-content;
}
.articles-info a {
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    width: max-content;

    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    &:hover {
        background-color: var(--accent);
        color: var(--text);
    }
}
.articles-item:hover .articles-info a {
    background-color: var(--accent);
        color: var(--text);
}
.articles-info a svg {
    width: 12px;
    height: 12px;
}
.articles-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--text);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    width: max-content;
    margin: 24px auto 0;
    text-decoration: none;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
/* ##### */
.text .container {
    padding: 120px 16px 20px;
}
.text h1 {
    font-size: 30px;
    margin-bottom: 24px;
}
.text-wrap {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
}
.text p {
    color: var(--text-secondary);
}
.text p + p,
.text p + ul {
    margin-top: 12px;
    margin-bottom: 12px;
}
.text ul {
    color: var(--text-secondary);
    list-style-position: inside;
}
.text h2:first-child {
    margin-top: 0;
}
.text h2 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}
.text h3 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 12px;
}
.text-info {
    margin-top: 24px;
    padding: 16px;
    border-radius: 8px;
    background-color: var(--bg-accent);
}
/* ##### */
.help .container {
    padding: 120px 16px 20px;
}
.help h1 {
    font-size: 30px;
    margin-bottom: 24px;
}
.help-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.help-item {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
}
.help-item h2 {
    font-size: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.help-item h2 svg {
    color: var(--text);
    width: 20px;
    height: 20px;
}
.help-item p {
    font-size: 16px;
    color: var(--text-secondary);
}
.help-link {
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
    padding: 8px 12px;
    display: block;
    font-size: 14px;
    margin-top: 16px;
    text-decoration: none;
    color: var(--text);

    transition: background-color 0.2s ease-out;
    &:hover {
        background-color: var(--hover-bg);
    }
}
.help-link-2 {
    margin-top: 16px;
    text-decoration: none;
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);

    transition: border-color 0.2s ease-out;
    &:hover {
        border-color: var(--accent);
    }
}
.help-link-2 svg {
    color: var(--accent);
    grid-row: span 2;
    width: 20px;
    height: 20px;
}
.help-link-2 h3 {
    font-size: 16px;
    color: var(--text);
}
.help-link-2 p {
    font-size: 14px;
    color: var(--text-secondary);
}
.help-faq {
    margin-top: 32px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
}
.help-faq h2 {
    font-size: 24px;
}
.help-faq h3 {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 24px;
}
.help-faq p {
    font-size: 14px;
    color: var(--text-secondary);
}
@media (max-width: 768px) {
    .help-box {
        grid-template-columns: 1fr;
    }
}
/* ##### */
.carrier .container {
    padding: 120px 16px 20px;
}
.carrier h1 {
    font-size: 30px;
    margin-bottom: 24px;
}
.carrier-box {
    padding: 16px;
    border: 1px solid var(--bg-accent);
    border-radius: 8px;
}
.carrier-box h2 {
    font-size: 24px;
    margin-bottom: 24px;
}
.carrier-item {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
    display: grid;
    grid-template-columns: 20px 1fr max-content;
    align-items: center;
    column-gap: 12px;
    row-gap: 4px;
}
.carrier-item svg {
    width: 20px;
    height: 20px;
    color: var(--ok);
    grid-row: span 2;
}
.carrier-item h3 {
    font-size: 16px;
}
.carrier-item p {
    font-size: 14px;
    color: var(--text-secondary);
}
.carrier-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    background-color: var(--accent);
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}
/* ##### */
.regions .container {
    padding: 120px 16px 20px;
}
.regions h1 {
    font-size: 30px;
    margin-bottom: 24px;
}
.regions-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.regions-box {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
}
.regions-box h2 {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.regions-box h2 span {
    padding: 2px 10px;
    font-size: 12px;
    background-color: var(--accent);
    border-radius: 20px;
}
.regions-item {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 16px 1fr;
    column-gap: 12px;
    row-gap: 4px;
}
.regions-item svg {
    width: 16px;
    height: 16px;
    grid-row: span 2;
}
.regions-item h3 {
    font-size: 14px;
}
.regions-item p {
    font-size: 14px;
    color: var(--text-secondary);
}
@media (max-width: 768px) {
    .regions-wrap {
        grid-template-columns: 1fr;
    }
}
/* ##### */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(7px);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.modal.open {
    display: flex;
}
.modal-wrap {
    padding: 40px 24px 24px;
    background-color: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}
.modal h2 {
    display: flex;
    align-items: center;
    font-size: 18px;
    gap: 12px;
    margin-bottom: 16px;
}
.modal-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.modal h2 svg {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: var(--err);
}
.modal h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}
.modal svg {
    width: 16px;
    height: 16px;
    color: var(--err);
}
.modal p {
    font-size: 14px;
    color: var(--text-secondary);
}
.modal .regions-link {
    color: darkblue;
    text-decoration: underline;
    font-weight: 600;
}
.modal .goto-link  {
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    margin-top: 16px;
    background-color: var(--accent);
    color: var(--text);
    font-size: 14px;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
/* #### */
.article-page {
    padding: 120px 16px 20px;
}
.article-page .container {
    max-width: 700px;
}
.article-page-header img {
    display: block;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}
.article-page-header h2 {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 24px;
}
.article-page-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}
.article-page-info div,
.article-page-info div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}

.article-page-info svg {
    width: 16px;
    height: 16px;
}
.article-page-text h3 {
    font-size: 18px;
    margin-bottom: 16px;
}
.article-page-text p + h3 {
    margin-top: 24px;
}
.article-page-text p + p {
    margin-top: 8px;
}
/* #### */
.container.first-container {
    padding-top: 140px;
}
h2 + .grid-wrap {
    margin-top: 24px;
}
.trial-top h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text);
}
/* ################# */
/* ################# */
/* ################# */
/* #### */
.hero {
    text-align: center;
    padding: 120px 16px 64px;
}

.hero .container {
    padding: 40px;
    background: url(../img/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 24px;
    position: relative;
}
.hero .container::before {
    content: "";
    background-color: rgba(17, 33, 82, 0.7);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 24px;
}

.hero-subtitle {
    font-size: 18px;
    max-width: max-content;
    margin: 0 auto 24px;
    padding: 8px 24px;
    color: var(--bg);
    background-color: var(--accent);
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-subtitle img {
    display: inline-block;
    width: 30px;
}

.hero-title {
    color: var(--bg);
    font-size: 60px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.hero-desc {
    position: relative;
    z-index: 2;
    font-size: 24px;
    color: var(--bg);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
}

.hero .icon {
    width: 20px;
    height: 20px;
    color: var(--ok);
}

@media (max-width: 768px) {
    .hero .container {
        padding: 20px;
    }
    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 20px;
        margin-bottom: 0;
    }

    .hero ul {
        flex-direction: column;
    }
}
/* #### */
.alert .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.alert .wrap {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--alert-border);
    background-color: var(--alert-bg);
}

.alert-header {
    display: grid;
    align-items: center;
    grid-template-columns: 32px 1fr;
    column-gap: 12px;
    margin-bottom: 24px;
}

.alert-header svg {
    grid-row: span 2;
    display: block;
    width: 32px;
    height: 32px;
    color: var(--alert-2);
}

.alert-header h2 {
    font-size: 24px;
    color: var(--alert-1);
}

.alert-header p {
    font-size: 14px;
    color: var(--alert-2);
}

.alert-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.alert-item h3 {
    font-size: 16px;
    color: var(--alert-1);
    margin-bottom: 12px;
}

.alert-item ul {
    list-style-type: disc;
    list-style-position: inside;
    display: grid;
    gap: 8px;
}

.alert-item ul li::marker {
    color: var(--alert-err);
}

.alert-item:last-child ul li::marker {
    color: var(--alert-ok);
}

@media (max-width: 768px) {
    .alert .container {
    padding-top: 24px;
    padding-bottom: 24px;
}
    .alert-box {
        grid-template-columns: 1fr;
    }
}

/* #### */
.test {
    background-color: var(--bg-3);
}

.test .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.test-title {
    margin-bottom: 48px;
    font-size: 30px;
    text-align: center;
}

.test-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.test-item {
    padding: 24px;
    background-color: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;

    display: grid;
    grid-template-columns: 1fr max-content;
    row-gap: 24px;
    column-gap: 12px;
    align-items: center;
}

.test-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 40px;
    background-color: var(--bg-2);
    font-size: 12px;
}

.test-item h3 {
    font-size: 18px;
}

.test-item p {
    grid-column: span 2;
    font-size: 16px;
    color: var(--text-3);
}

@media (max-width: 768px) {
    .test .container {
    padding-top: 24px;
    padding-bottom: 24px;
}
.test-title {
    margin-bottom: 16px;
}
    .test-box {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* #### */
/* #### */
.why .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.why-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 48px;
}

.why-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.why-desc {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s ease-in-out;
}
.why-desc div {
    overflow: hidden;
}
.why-desc p {
    font-size: 14px;
    color: var(--text-3);
    padding: 0 36px 16px;
}
.active + .why-desc {
    grid-template-rows: 1fr;
}

.why-top:hover h3 {
    text-decoration: underline;
}
.why-top {
    cursor: pointer;
    display: grid;
    grid-template-columns: 24px 1fr 16px;
    gap: 12px;
    align-items: center;
    padding: 16px 0;
}
.why-top svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}
.why-top h3 {
    font-size: 16px;
}
.why-top img {
    display: block;
    width: 100%;
    transition: transform 0.1s linear;
}
.why-top.active img {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .why .container {
    padding-top: 24px;
    padding-bottom: 24px;
}
.why-title {
    margin-bottom: 16px;
}
}
/* #### */
.win-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.w-info-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-template-rows: min-content;
    column-gap: 16px;
    row-gap: 4px;
    margin-bottom: 16px;
}

.w-info-item svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    grid-row: span 2;
}

.w-info-item img {
    display: block;
    object-fit: contain;
    width: 32px;
    height: 32px;
    grid-row: span 2;
}

.w-info-item h4 {
    font-size: 20px;
}

.w-info-item p {
    font-size: 14px;
    color: var(--text-3);
}
@media (max-width: 768px) {
    .win-info {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .w-info-item {
        max-width: 400px;
    }
}
/* #### */
