/*
Theme Name: starter
*/

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

:root {
    --e-primary: #1a1a2e;
    --e-light: #f8fafc;
    --e-white: #ffffff;
    --e-text: #4a4a68;
    --e-accent: #6c63ff;
    --e-heading: #1a1a2e;
    --e-footer-bg: #1a1a2e;
    --e-footer-text: #94a3b8;
    --e-overlay-color: #1a1a2e;
    --e-overlay-alpha: 0.7;
    --e-btn1: #6c63ff;
    --e-btn2: #ff6584;
    --e-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--e-font-family); color: var(--e-text); line-height: 1.7; font-size: 1.05rem; background: var(--e-white); }
img { max-width: 100%; height: auto; }
a { color: var(--e-accent); text-decoration: none; }
a:hover { opacity: 0.8; }

.elementor-header {
    position: relative;
    z-index: 100;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.elementor-logo { font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; text-decoration: none; }
.elementor-logo img { display: block; }

.elementor-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
.elementor-nav a { font-size: 0.95rem; font-weight: 500; transition: opacity 0.2s; }
.elementor-nav a:hover { opacity: 0.8; }

.elementor-nav .menu { display: flex; list-style: none; gap: 25px; margin: 0; padding: 0; }
.elementor-nav .menu li a { font-size: 0.95rem; font-weight: 500; transition: opacity 0.2s; }
.elementor-nav .menu li a:hover { opacity: 0.8; }

.elementor-lang-wrap { position: relative; }
.elementor-dropdown { position: relative; }

.elementor-dropdown__btn {
    display: flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,0.12); border: 1px solid currentColor;
    color: inherit; font-size: 0.85rem; font-weight: 600;
    padding: 5px 12px; border-radius: 6px; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
}
.elementor-dropdown__btn:hover { background: rgba(255,255,255,0.2); }
.elementor-dropdown__arrow { transition: transform 0.2s; }
.elementor-dropdown.is-expanded .elementor-dropdown__arrow { transform: rotate(180deg); }

.elementor-dropdown__menu {
    display: none; position: absolute; top: calc(100% + 6px); right: 0;
    background: var(--e-white); border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    list-style: none; margin: 0; padding: 6px 0;
    min-width: 70px; z-index: 300; max-height: 240px; overflow-y: auto;
}
.elementor-dropdown.is-expanded .elementor-dropdown__menu { display: block; }
.elementor-dropdown__menu li a { display: block; padding: 6px 16px; color: var(--e-text); font-size: 0.85rem; font-weight: 600; text-align: center; transition: background 0.15s; }
.elementor-dropdown__menu li a:hover { background: var(--e-light); opacity: 1; color: var(--e-text); }
.elementor-dropdown__menu li a.is-active { color: var(--e-accent); }

.elementor-offcanvas .elementor-dropdown__btn { font-size: 1rem; padding: 8px 18px; }
.elementor-offcanvas .elementor-dropdown__menu { position: static; box-shadow: none; background: rgba(255,255,255,0.1); border-radius: 8px; margin-top: 8px; max-height: 200px; }
.elementor-offcanvas .elementor-dropdown__menu li a { color: inherit; font-size: 1rem; }
.elementor-offcanvas .elementor-dropdown__menu li a:hover { background: rgba(255,255,255,0.1); }
.elementor-offcanvas .elementor-dropdown__menu li a.is-active { color: var(--e-accent); }

.elementor-burger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 10px; position: fixed; top: 15px; right: 15px; z-index: 210;
}
.elementor-burger span { display: block; width: 26px; height: 3px; border-radius: 2px; transition: all 0.3s ease; }
.elementor-burger span + span { margin-top: 5px; }
.elementor-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 7px); }
.elementor-burger.is-open span:nth-child(2) { opacity: 0; }
.elementor-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -7px); }

.elementor-offcanvas {
    display: none; position: fixed; inset: 0; z-index: 200;
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.elementor-offcanvas.is-visible { display: flex; }
.elementor-offcanvas__close {
    position: absolute; top: 15px; right: 15px; background: none;
    border: none; font-size: 2.5rem; cursor: pointer; padding: 5px 12px;
    line-height: 1; z-index: 211;
}
.elementor-offcanvas__close:hover { opacity: 0.7; }
.elementor-offcanvas a { font-size: 1.4rem; font-weight: 600; transition: opacity 0.2s; }
.elementor-offcanvas a:hover { opacity: 0.7; }
.elementor-offcanvas .elementor-lang-wrap { font-size: 1rem; }
.elementor-offcanvas .elementor-lang-wrap a { font-size: 1rem; padding: 5px 10px; }

.elementor-offcanvas .menu { list-style: none; margin: 0; padding: 0; text-align: center; }
.elementor-offcanvas .menu li { margin-bottom: 15px; }
.elementor-offcanvas .menu li a { font-size: 1.4rem; font-weight: 600; }

.elementor-hero {
    position: relative; width: 100%; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; background-color: var(--e-primary);
    background-size: cover; background-position: center; overflow: hidden;
}
.elementor-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: var(--e-hero-overlay, var(--e-overlay-color));
    opacity: var(--e-hero-alpha, var(--e-overlay-alpha));
}

.elementor-hero__inner { position: relative; z-index: 2; max-width: 600px; width: 100%; padding: 40px 20px; }
.elementor-hero__title { color: var(--e-light); font-size: calc(1.6rem + 1.5vw); font-weight: 800; line-height: 1.2; margin-bottom: 10px; display: block; }
.elementor-hero__subtitle { color: rgba(248,250,252,0.8); font-size: 1.1rem; font-weight: 400; margin-bottom: 35px; line-height: 1.5; }
.elementor-hero__above { color: var(--e-light); font-size: 1.3rem; font-weight: 700; margin-bottom: 25px; }

.elementor-hero__actions { display: flex; flex-direction: row; justify-content: center; align-items: flex-start; gap: 50px; margin-bottom: 25px; }
a.elementor-hero__card, .elementor-hero__card { display: flex; flex-direction: column; align-items: center; gap: 12px; text-decoration: none; transition: transform 0.3s ease; width: auto; max-width: 120px; }
.elementor-hero__card:hover { transform: scale(1.08); opacity: 1; }

.elementor-hero__icon {
    width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3); transition: box-shadow 0.3s ease;
}
.elementor-hero__card:nth-child(1) .elementor-hero__icon { background: var(--e-btn1); }
.elementor-hero__card:nth-child(2) .elementor-hero__icon { background: var(--e-btn2); }
.elementor-hero__card:hover .elementor-hero__icon { box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.elementor-hero__icon img { width: 50px; height: 50px; object-fit: contain; border-radius: 0; }
.elementor-hero__emoji { font-size: 42px; line-height: 1; }
.elementor-hero__label { color: var(--e-light); font-size: 0.95rem; font-weight: 600; display: block; text-align: center; }
.elementor-hero__below { color: rgba(248,250,252,0.7); font-size: 0.95rem; font-weight: 400; line-height: 1.5; }

.elementor-hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; animation: elBounce 2s infinite; }
.elementor-hero__scroll svg { width: 30px; height: 30px; fill: none; stroke: rgba(248,250,252,0.6); stroke-width: 2; }
@keyframes elBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.elementor-main { display: grid; grid-template-rows: auto auto auto; }
.elementor-main > .elementor-hero { grid-row: 1; }
.elementor-main > .elementor-content { grid-row: 2; }
.elementor-main > .elementor-faq { grid-row: 3; }

.elementor-content {
    max-width: 820px;
    margin-inline: auto;
    padding: 70px 24px 50px;
}
.elementor-content > h1 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--e-heading);
    margin-bottom: 28px;
    line-height: 1.25;
}
.elementor-content__body h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 44px 0 18px;
    color: var(--e-heading);
    position: relative;
    padding-bottom: 10px;
}
.elementor-content__body h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: var(--e-accent);
}
.elementor-content__body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 36px 0 14px;
    color: var(--e-heading);
}
.elementor-content__body p {
    margin-bottom: 18px;
    font-size: 1.08rem;
    line-height: 1.85;
}
.elementor-content__body ul, .elementor-content__body ol {
    margin: 0 0 18px 28px;
}
.elementor-content__body li {
    margin-bottom: 7px;
    line-height: 1.75;
}
.elementor-content__body blockquote {
    border-left: 5px solid var(--e-accent);
    padding: 14px 22px;
    margin: 28px 0;
    font-style: italic;
    background: #f0efff;
    border-radius: 0 10px 10px 0;
}
.elementor-content__body img {
    border-radius: 10px;
    margin: 18px 0;
}
.elementor-content__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}
.elementor-content__body th,
.elementor-content__body td {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.elementor-content__body th {
    background: var(--e-light);
    font-weight: 700;
}

.elementor-faq {
    max-width: 820px;
    margin-inline: auto;
    padding: 0 24px 55px;
}
.elementor-faq > h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--e-heading);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.elementor-faq > h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: var(--e-accent);
}
.elementor-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.elementor-faq__item {
    background: var(--e-light);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.elementor-faq__item:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.elementor-faq__item > summary {
    padding: 17px 22px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--e-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    list-style: none;
}
.elementor-faq__item > summary::-webkit-details-marker { display: none; }
.elementor-faq__item > summary::after {
    content: "+";
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--e-accent);
    transition: transform 0.25s;
    flex-shrink: 0;
}
.elementor-faq__item[open] > summary::after {
    transform: rotate(45deg);
}
.elementor-faq__answer p {
    padding: 0 22px 17px;
    line-height: 1.7;
    color: var(--e-text);
    margin: 0;
}

.elementor-footer {
    background: var(--e-footer-bg);
    color: var(--e-footer-text);
    padding: 36px 24px;
}
.elementor-footer__inner {
    max-width: 820px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.elementor-footer small {
    font-size: 0.9rem;
}
.elementor-footer a { color: var(--e-footer-text); }
.elementor-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}
.elementor-footer__links a {
    font-size: 0.8rem;
    transition: opacity 0.2s;
}
.elementor-footer__links a:hover { opacity: 0.7; }

.elementor-footer__links .menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.elementor-footer__links .menu li a {
    font-size: 0.8rem;
    transition: opacity 0.2s;
    color: var(--e-footer-text);
}
.elementor-footer__links .menu li a:hover { opacity: 0.7; }

.elementor-login-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 50px 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}
.elementor-login__logo { margin-bottom: 30px; }
.elementor-login__logo img { width: auto; }
.elementor-login__brand { font-size: 1.8rem; font-weight: 800; }
.elementor-login__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.elementor-login__desc { font-size: 0.9rem; color: #777; margin-bottom: 30px; }
.elementor-login__field { margin-bottom: 18px; text-align: left; }
.elementor-login__field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: #555; }
.elementor-login__field input {
    width: 100%; padding: 12px 16px;
    border: 2px solid #e2e8f0; border-radius: 10px;
    font-size: 1rem; font-family: inherit;
    transition: border-color 0.2s; outline: none;
}
.elementor-login__field input:focus { border-color: var(--e-accent); }
.elementor-login__submit {
    width: 100%; padding: 14px;
    background: var(--e-accent); color: #fff;
    border: none; border-radius: 10px;
    font-size: 1.05rem; font-weight: 700;
    cursor: pointer; transition: filter 0.2s; margin-top: 10px;
}
.elementor-login__submit:hover { filter: brightness(0.9); }
.elementor-login__divider {
    display: flex; align-items: center; gap: 12px;
    margin: 25px 0; color: #aaa; font-size: 0.8rem;
}
.elementor-login__divider::before,
.elementor-login__divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.elementor-login__social {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 12px; border: 2px solid #e2e8f0;
    border-radius: 10px; background: #fff; font-size: 0.95rem;
    font-weight: 600; cursor: pointer; transition: background 0.2s;
    margin-bottom: 10px; color: #333; text-decoration: none;
}
.elementor-login__social:hover { background: #f7f7f7; }
.elementor-login__social svg { width: 20px; height: 20px; flex-shrink: 0; }
.elementor-login__footer { margin-top: 25px; font-size: 0.8rem; color: #999; }
.elementor-login__footer a { color: var(--e-accent); text-decoration: none; }

@media (max-width: 768px) {
    .elementor-header { padding: 10px 15px !important; }
    .elementor-nav { display: none !important; }
    .elementor-burger { display: flex; flex-direction: column; }
    .elementor-hero__title { font-size: 1.6rem; }
    .elementor-hero__subtitle { font-size: 0.95rem; margin-bottom: 25px; }
    .elementor-hero__above { font-size: 1.1rem; margin-bottom: 20px; }
    .elementor-hero__actions { gap: 35px; }
    .elementor-hero__icon { width: 85px; height: 85px; }
    .elementor-hero__icon img { width: 40px; height: 40px; }
    .elementor-hero__emoji { font-size: 36px; }
    .elementor-hero__below { font-size: 0.85rem; }
    .elementor-header .elementor-logo img { height: 35px !important; width: auto !important; }
    .elementor-content { padding: 45px 16px 35px; }
    .elementor-content > h1 { font-size: 1.7rem; }
    .elementor-content__body h2 { font-size: 1.45rem; }
    .elementor-faq { padding: 0 16px 40px; }
    .elementor-footer__inner { flex-direction: column; text-align: center; align-items: center; }
    .elementor-login-box { margin: 20px; padding: 35px 25px; }
}
