/* =========================================================
   АРОМАНЕО
========================================================= */


/* =========================================================
   1. VARIABLES
========================================================= */

:root {
    --bg: #09090b;
    --bg-soft: #111118;

    --card: rgba(255, 255, 255, .05);
    --card-hover: rgba(255, 255, 255, .075);

    --white: #ffffff;
    --text: #d7d7d7;
    --muted: #a7a7a7;

    --purple: #7C3AED;
    --purple-light: #9F67FF;
    --purple-dark: #5B21B6;

    --border: rgba(255, 255, 255, .08);

    --radius: 22px;

    --container: 1200px;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family: 'Inter', sans-serif;

    background: var(--bg);

    color: var(--white);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   3. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--purple);

    border-radius: 50px;
}


/* =========================================================
   4. GLOBAL CONTAINER
========================================================= */

.container {
    width: min(var(--container), 92%);

    margin: 0 auto;
}

.section {
    padding: 120px 0;
}


/* =========================================================
   5. SECTION TITLES
========================================================= */

.section-title {
    text-align: center;

    margin-bottom: 65px;
}

.section-title h2 {
    font-size: 50px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.section-title p {
    max-width: 700px;

    margin: 20px auto 0;

    color: var(--muted);

    line-height: 1.8;
}


/* =========================================================
   6. BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 32px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-light)
        );

    box-shadow:
        0 12px 35px rgba(124, 58, 237, .30);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 40px rgba(124, 58, 237, .42);
}

.btn-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 32px;

    margin-left: 15px;

    border-radius: 50px;

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, .03);

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    color: #fff;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        border-color .35s ease;
}

.btn-secondary:hover {
    background: #fff;

    border-color: #fff;

    color: #000;

    transform: translateY(-4px);
}


/* =========================================================
   7. HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    background: rgba(8, 8, 10, .65);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom:
        1px solid rgba(255, 255, 255, .05);
}

.site-header .container {
    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   8. LOGO
========================================================= */

.site-header .logo {
    display: flex;

    align-items: center;

    text-decoration: none;
}

.site-header .logo img {
    display: block;

    height: 70px;

    width: auto;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-header nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 28px;

    flex: 1;
}

.site-header nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.62);

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

.site-header nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--purple-light);

    transition:
        width 0.25s ease;
}

.site-header nav a:hover {
    color: #fff;
}

.site-header nav a:hover::after {
    width: 100%;
}


/* =========================================================
   10. HERO
========================================================= */

.hero {
    position: relative;

    height: 100vh;

    min-height: 700px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
}

.hero video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -2;
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(124, 58, 237, .18),
            transparent 45%
        );

    z-index: -1;

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(9, 9, 11, .38),
            rgba(9, 9, 11, .92)
        );

    z-index: -1;

    pointer-events: none;
}

.hero-content {
    width: min(900px, 92%);

    margin-top: 40px;
}

.hero h1 {
    font-size: 70px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -2.5px;
}

.hero h1 span {
    color: var(--purple-light);
}

.hero p {
    max-width: 760px;

    margin: 25px auto 0;

    color: var(--text);

    font-size: 22px;

    line-height: 1.7;
}

.hero-buttons {
    margin-top: 45px;
}


/* =========================================================
   11. ABOUT / CARDS
========================================================= */

.cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;
}

.card {
    position: relative;

    padding: 45px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--card);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, .10),
            transparent 65%
        );

    opacity: 0;

    transition: opacity .35s ease;

    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(159, 103, 255, .55);

    box-shadow:
        0 18px 40px rgba(124, 58, 237, .15);
}

.card:hover::before {
    opacity: 1;
}

.card > i {
    position: relative;

    z-index: 1;

    font-size: 45px;

    color: var(--purple-light);
}

.card h3 {
    position: relative;

    z-index: 1;

    margin: 25px 0 15px;

    font-size: 26px;

    line-height: 1.25;
}

.card p {
    position: relative;

    z-index: 1;

    color: #bebebe;

    line-height: 1.8;
}


/* =========================================================
   12. AROMAS
========================================================= */

.aromas {
    position: relative;

    z-index: 1;

    list-style: none;

    padding: 0;

    margin-top: 20px;

    text-align: left;
}

.aromas li {
    margin-bottom: 16px;
}

.aromas li:last-child {
    margin-bottom: 0;
}

.aromas strong {
    display: block;

    color: #fff;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 600;
}

.aromas small {
    display: block;

    margin-top: 4px;

    color: rgba(255, 255, 255, .58);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   13. HOW IT WORKS
========================================================= */

.step-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.step {
    text-align: center;

    padding: 40px 25px;
}

.step span {
    width: 75px;
    height: 75px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-light)
        );

    font-size: 28px;

    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(124, 58, 237, .25);
}

.step h3 {
    margin-bottom: 12px;

    font-size: 20px;
}

.step p {
    color: var(--muted);

    line-height: 1.7;
}


/* =========================================================
   14. BENEFITS
========================================================= */

.benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}

.benefit-grid > div {
    padding: 40px;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: var(--card);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.benefit-grid > div:hover {
    transform: translateY(-8px);

    border-color:
        rgba(124, 58, 237, .45);

    box-shadow:
        0 15px 35px rgba(124, 58, 237, .14);
}

.benefit-grid i {
    font-size: 42px;

    color: var(--purple-light);
}

.benefit-grid h3 {
    margin: 18px 0 12px;

    font-size: 22px;
}

.benefit-grid p {
    color: #bdbdbd;

    line-height: 1.7;
}


/* =========================================================
   15. PRICE
========================================================= */

.price {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(124, 58, 237, .06),
            transparent 45%
        );
}

.price-card {
    width: min(420px, 92%);

    margin: 0 auto;

    padding: 60px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius: 28px;

    background: var(--card);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .20);
}

.price-card h3 {
    font-size: 22px;
}

.cost {
    margin: 25px 0;

    color: var(--purple-light);

    font-size: 58px;

    font-weight: 800;

    line-height: 1;
}

.price-card ul {
    list-style: none;

    margin-bottom: 40px;
}

.price-card li {
    margin: 18px 0;

    color: #d4d4d4;

    font-size: 15px;
}


/* =========================================================
   16. FAQ
========================================================= */

.faq details {
    padding: 24px;

    margin-bottom: 18px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background: var(--card);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition:
        border-color .3s ease,
        background .3s ease;
}

.faq details:hover {
    border-color:
        rgba(124, 58, 237, .45);
}

.faq details[open] {
    border-color:
        rgba(124, 58, 237, .55);

    background:
        rgba(124, 58, 237, .055);
}

.faq summary {
    cursor: pointer;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.5;

    list-style-position: inside;
}

.faq details p {
    margin-top: 18px;

    color: #c7c7c7;

    line-height: 1.8;
}


/* =========================================================
   17. FAQ INSTRUCTION
========================================================= */

.instruction {
    margin-top: 25px;
}

.instruction h3 {
    margin-top: 25px;
    margin-bottom: 10px;

    color: var(--purple-light);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .3px;
}

.instruction h3:first-child {
    margin-top: 0;
}

.instruction p {
    margin-top: 0 !important;
}


/* =========================================================
   18. CONTACTS
========================================================= */

.contacts {
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(124, 58, 237, .06),
            transparent 45%
        );
}


/* Социальные кнопки именно главной страницы */

.contacts .socials {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 35px;
}

.contacts .socials a {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background: var(--card);

    text-decoration: none;

    font-size: 28px;

    color: #fff;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.contacts .socials a:hover {
    transform: translateY(-8px);

    background: var(--purple);

    border-color: var(--purple);

    box-shadow:
        0 12px 30px rgba(124, 58, 237, .30);
}

/* =========================================================
   MAX
   ========================================================= */

.max-contact-icon {
    font-size: 13px;

    font-weight: 800;

    letter-spacing: -0.5px;

    line-height: 1;
}


/* =========================================================
   19. FOOTER
========================================================= */

.site-footer {
    width: 100%;

    padding: 35px;

    text-align: center;

    color: #8d8d8d;

    border-top:
        1px solid rgba(255, 255, 255, .06);
}

.footer-content {
    width: min(var(--container), 92%);

    margin: 0 auto;
}

.footer-text {
    font-size: 11px;

    line-height: 1.8;
}

.footer-slogan {
    display: inline-block;

    margin-top: 15px;

    color: rgba(255, 255, 255, .45);

    font-size: 12px;

    font-weight: 600;
}

.footer-contact {
    margin-top: 12px;

    color: rgba(255, 255, 255, .55);

    font-size: 12px;
}

.footer-contact a {
    color: inherit;

    text-decoration: none;

    transition: color .3s ease;
}

.footer-contact a:hover {
    color: var(--purple-light);
}

.footer-disclaimer {
    margin-top: 15px;

    color: rgba(255, 255, 255, .28);

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   20. TABLET
========================================================= */

@media (max-width: 1000px) {

    .site-header nav {
        display: none;
    }

    .site-header .btn {
        margin-left: auto;
    }

    .hero h1 {
        font-size: 52px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .step-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   21. MOBILE
========================================================= */

@media (max-width: 700px) {

    .section {
        padding: 80px 0;
    }


    /* HEADER */

    .site-header .container {
        height: 72px;
    }

    .site-header .logo img {
        height: 58px;
    }

    .site-header .btn {
        padding: 11px 19px;

        font-size: 12px;
    }


    /* SECTION TITLE */

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-size: 36px;

        letter-spacing: -1px;
    }


    /* HERO */

    .hero {
        min-height: 100vh;

        height: auto;

        padding-top: 100px;
        padding-bottom: 70px;
    }

    .hero-content {
        width: 92%;

        margin-top: 20px;
    }

    .hero h1 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .hero p {
        margin-top: 20px;

        font-size: 18px;

        line-height: 1.65;
    }

    .hero-buttons {
        display: flex;

        flex-direction: column;

        gap: 15px;

        margin-top: 35px;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-secondary {
        width: 100%;

        margin-left: 0;
    }


    /* CARDS */

    .card {
        padding: 30px;
    }


    /* STEPS */

    .step-grid {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 30px 15px;
    }


    /* BENEFITS */

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid > div {
        padding: 30px;
    }


    /* PRICE */

    .price-card {
        padding: 40px 25px;
    }

    .cost {
        font-size: 50px;
    }


    /* FAQ */

    .faq details {
        padding: 20px;
    }

    .faq summary {
        font-size: 17px;
    }


    /* CONTACTS */

    .contacts .socials {
        gap: 15px;
    }

    .contacts .socials a {
        width: 60px;
        height: 60px;

        font-size: 24px;
    }


    /* FOOTER */

    .site-footer {
        padding: 30px 18px;
    }
}


/* =========================================================
   22. SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .site-header .logo img {
        height: 52px;
    }

    .site-header .btn {
        padding: 10px 15px;

        font-size: 11px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .card {
        padding: 25px;
    }

    .aromas strong {
        font-size: 13px;
    }

    .aromas small {
        font-size: 11px;
    }
}


/* =========================================================
   23. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}