/* ==========================================
   АромаНео
   Что ты тут делаешь?=)
========================================== */


/* =====================
   VARIABLES
===================== */

:root {

    --bg:#09090b;
    --bg-soft:#111118;

    --card:rgba(255,255,255,.05);

    --white:#ffffff;
    --text:#d7d7d7;
    --muted:#a7a7a7;

    --purple:#7C3AED;
    --purple-light:#9F67FF;

    --border:rgba(255,255,255,.08);

    --radius:22px;

}


/* =====================
   RESET
===================== */

* {

    margin:0;
    padding:0;
    box-sizing:border-box;

}


html {

    scroll-behavior:smooth;

}


body {

    font-family:'Inter', sans-serif;

    background:var(--bg);

    color:var(--white);

    overflow-x:hidden;

}


img {

    max-width:100%;

}


a {

    color:inherit;

}


::-webkit-scrollbar {

    width:9px;

}


::-webkit-scrollbar-thumb {

    background:var(--purple);

    border-radius:50px;

}



/* =====================
   GLOBAL
===================== */


.container {

    width:min(1200px,92%);

    margin:auto;

}


.section {

    padding:120px 0;

}


.section-title {

    text-align:center;

    margin-bottom:65px;

}


.section-title h2 {

    font-size:50px;

    font-weight:800;

}


.section-title p {

    max-width:700px;

    margin:20px auto 0;

    color:var(--muted);

    line-height:1.8;

}


/* =====================
   BUTTONS
===================== */


.btn {

    display:inline-block;

    padding:15px 32px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    color:white;

    background:
    linear-gradient(
    135deg,
    var(--purple),
    var(--purple-light)
    );

    box-shadow:
    0 12px 35px rgba(124,58,237,.3);

    transition:.35s;

}


.btn:hover {

    transform:translateY(-4px);

}


.btn-secondary {

    display:inline-block;

    padding:15px 32px;

    border-radius:50px;

    text-decoration:none;

    border:1px solid var(--border);

    margin-left:15px;

    transition:.35s;

}


.btn-secondary:hover {

    background:white;

    color:black;

}



/* =====================
   HEADER
===================== */


header {

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    backdrop-filter:blur(20px);

    background:rgba(8,8,10,.65);

    border-bottom:
    1px solid rgba(255,255,255,.05);

}


header .container {

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}



.logo {

    display:flex;

    align-items:center;

}


.logo img {

    height:70px;

    width:auto;

}



nav {

    display:flex;

    gap:34px;

}


nav a {

    text-decoration:none;

    color:white;

    opacity:.75;

    transition:.3s;

}


nav a:hover {

    color:var(--purple-light);

    opacity:1;

}



nav a.active {

    color:var(--purple-light);

    opacity:1;

}


nav a.active::after {

    content:"";

    display:block;

    height:2px;

    width:100%;

    margin-top:6px;

    background:var(--purple-light);

    border-radius:10px;

}



/* =====================
   HERO
===================== */


.hero {

    height:100vh;

    min-height:700px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

    overflow:hidden;

}


.hero video {

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:-2;

}


.hero::after {

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(9,9,11,.45),
    rgba(9,9,11,.9)
    );

    z-index:-1;

}


.hero-content {

    width:min(900px,92%);

}



.hero h1 {

    font-size:70px;

    line-height:1.08;

    font-weight:800;

}


.hero h1 span {

    color:var(--purple-light);

}


.hero p {

    margin-top:25px;

    color:var(--text);

    font-size:22px;

    line-height:1.7;

}


.hero-buttons {

    margin-top:45px;

}

/* =====================
   LOCATIONS
===================== */
/* =====================
   LOCATIONS
===================== */


.locations {

    background:#0b0b0f;

}



.locations h1 {

    text-align:center;

    font-size:42px;

    margin-bottom:15px;

}



.subtitle {

    text-align:center;

    color:var(--muted);

    margin-bottom:40px;

}





/* =====================
   MAP
===================== */


#map {

    width:100%;

    height:500px;

    border-radius:25px;

    overflow:hidden;

    border:1px solid var(--border);

}





/* Яндекс карта */

.ymaps-2-1-79-balloon {

    border-radius:20px!important;

    overflow:hidden;

}



.ymaps-2-1-79-balloon__content {

    padding:15px!important;

}





.map-balloon {

    font-family:'Inter',sans-serif;

    color:#111;

    min-width:220px;

}



.map-balloon h3 {

    margin-bottom:12px;

    font-size:18px;

}



.map-balloon p {

    margin:8px 0;

    font-size:14px;

    color:#555;

}





/* =====================
   ADDRESS CARDS
===================== */



.addresses {

    margin-top:50px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:25px;

}





.address-card {

    background:
    linear-gradient(
    145deg,
    #191922,
    #101015
    );


    border:1px solid var(--border);

    padding:28px;

    border-radius:25px;

    transition:.35s;

}





.address-card:hover {

    transform:translateY(-8px);

    border-color:var(--purple-light);

    box-shadow:
    0 15px 35px rgba(124,58,237,.2);

}





.address-header {

    display:flex;

    align-items:center;

    gap:15px;

}





.point-icon {

    width:50px;

    height:50px;


    display:flex;

    justify-content:center;

    align-items:center;


    border-radius:15px;


    background:
    linear-gradient(
    135deg,
    var(--purple),
    var(--purple-light)
    );


    font-size:22px;

}





.point-number {

    color:var(--purple-light);

    font-size:13px;

    font-weight:600;

}





.address-card h3 {

    margin-top:3px;

    font-size:20px;

}





.address-info {

    margin:25px 0;

}





.address-info p {

    display:flex;

    align-items:center;

    gap:10px;

    color:#ccc;

    margin:12px 0;

}





.address-info i {

    color:var(--purple-light);

    width:18px;

}





.route-btn {

    display:flex;

    justify-content:center;

    align-items:center;


    gap:10px;


    padding:14px;


    border-radius:15px;


    background:
    linear-gradient(
    135deg,
    var(--purple),
    var(--purple-light)
    );


    color:white;

    text-decoration:none;


    font-weight:600;


    transition:.3s;

}





.route-btn:hover {

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(124,58,237,.35);

}





/* =====================
   MOBILE
===================== */


@media(max-width:700px){


    .locations h1 {

        font-size:32px;

    }



    #map {

        height:400px;

        border-radius:20px;

    }



    .address-card {

        padding:22px;

    }


}

/* =====================
   CARDS
===================== */


.cards {

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

}



.card {

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:45px;

    backdrop-filter:blur(18px);

    transition:.35s;

}



.card:hover {

    transform:translateY(-12px);

    border-color:var(--purple);

}



.card i {

    font-size:45px;

    color:var(--purple-light);

}



.card h3 {

    margin:25px 0 15px;

    font-size:26px;

}



.card p {

    color:#bebebe;

    line-height:1.8;

}



/* =====================
   STEPS
===================== */


.step-grid {

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}



.step {

    text-align:center;

    padding:40px;

}



.step span {

    width:75px;

    height:75px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    var(--purple),
    var(--purple-light)
    );

    font-size:28px;

    font-weight:bold;

    margin-bottom:25px;

}



.step h3 {

    margin-bottom:12px;

}



/* =====================
   BENEFITS
===================== */


.benefit-grid {

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;

}



.benefit-grid div {

    padding:40px;

    background:var(--card);

    border-radius:20px;

    border:1px solid var(--border);

}



.benefit-grid i {

    font-size:42px;

    color:var(--purple);

}



.benefit-grid h3 {

    margin:18px 0;

}



/* =====================
   PRICE
===================== */


.price-card {

    width:min(420px,92%);

    margin:auto;

    text-align:center;

    background:var(--card);

    border-radius:28px;

    padding:60px;

    border:1px solid var(--border);

}



.cost {

    font-size:58px;

    color:var(--purple-light);

    font-weight:800;

    margin:25px 0;

}



.price-card ul {

    list-style:none;

    margin-bottom:40px;

}



.price-card li {

    margin:18px 0;

    color:#d4d4d4;

}

/* =====================
   FAQ
===================== */


details {

    background:var(--card);

    border:1px solid var(--border);

    border-radius:18px;

    padding:24px;

    margin-bottom:18px;

    transition:.3s;

}


details:hover {

    border-color:var(--purple);

}



summary {

    cursor:pointer;

    font-size:20px;

    font-weight:600;

}



details p {

    margin-top:18px;

    color:#c7c7c7;

    line-height:1.8;

}



/* =====================
   PARTNERS
===================== */


.partners {

    background:#111;

}



.partner-grid {

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(230px,1fr));

    gap:25px;

    margin-top:50px;

}



.partner-card {

    background:#1b1b1b;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    transition:.3s;

    border:1px solid rgba(255,255,255,.05);

}



.partner-card:hover {

    transform:translateY(-8px);

    border-color:var(--purple);

    box-shadow:
    0 15px 35px rgba(124,58,237,.25);

}



.partner-card i {

    font-size:42px;

    color:var(--purple-light);

    margin-bottom:20px;

}



.partner-card h3 {

    margin-bottom:15px;

}



.partner-card p {

    color:#bdbdbd;

    line-height:1.6;

}



.partner-box {

    margin-top:60px;

    background:

    linear-gradient(
    135deg,
    var(--purple),
    #5b21b6
    );

    padding:45px;

    border-radius:20px;

    text-align:center;

}



.partner-box h3 {

    font-size:30px;

    margin-bottom:25px;

}



.partner-box ul {

    list-style:none;

    margin-bottom:35px;

}



.partner-box li {

    margin:12px 0;

    font-size:18px;

}



.partner-box .btn {

    background:white;

    color:#6d28d9;

}



.partner-box .btn:hover {

    transform:translateY(-3px);

}



/* =====================
   CONTACTS
===================== */


.contacts {

    text-align:center;

}



.socials {

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:35px;

}



.socials a {

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--card);

    text-decoration:none;

    font-size:28px;

    transition:.35s;

}



.socials a:hover {

    background:var(--purple);

    transform:translateY(-8px);

}



/* =====================
   FOOTER
===================== */


footer {

    padding:35px;

    text-align:center;

    color:#8d8d8d;

    border-top:

    1px solid rgba(255,255,255,.06);

}



/* =====================
   AROMAS LIST
===================== */


.aromas {

    list-style:none;

    padding:0;

    margin-top:20px;

    text-align:left;

}



.aromas li {

    margin-bottom:14px;

}



.aromas strong {

    display:block;

    font-size:14px;

    font-weight:600;

}



.aromas small {

    display:block;

    font-size:12px;

    line-height:1.4;

    opacity:.7;

    margin-top:3px;

}



/* =====================
   RESPONSIVE
===================== */


@media(max-width:1000px){


    nav {

        display:none;

    }


    .hero h1 {

        font-size:48px;

    }


    .cards {

        grid-template-columns:1fr;

    }


    .step-grid {

        grid-template-columns:1fr 1fr;

    }


    .benefit-grid {

        grid-template-columns:1fr;

    }


}



@media(max-width:700px){


    .hero {

        min-height:100vh;

        height:auto;

        padding-top:120px;

    }


    .hero h1 {

        font-size:38px;

    }


    .hero p {

        font-size:18px;

    }


    .hero-buttons {

        display:flex;

        flex-direction:column;

        gap:18px;

    }


    .btn-secondary {

        margin-left:0;

    }


    .step-grid {

        grid-template-columns:1fr;

    }


    .section-title h2 {

        font-size:36px;

    }


    .card {

        padding:30px;

    }


    .price-card {

        padding:40px 25px;

    }


    #map {

        height:350px;

    }


}