
:root{

    --green:#03a6a6;       /* Основной акцент — бирюза Accelus */
    --green-dark:#028080;  /* Тёмный оттенок бирюзы для hover */
    --yellow:#000000;      /* Был жёлтый Петромастер → теперь чёрный (контраст на светлом фоне) */

    --bg:#e6e6e6;          /* Основной фон страницы — серый Accelus */
    --bg-light:#f0f0f0;    /* Чуть светлее для чередующихся секций */
    --bg-card:#ffffff;     /* Фон карточек — белый */

    --white:#1a1a1a;       /* Был белый текст → тёмный текст на светлом фоне */
    --gray:#555555;        /* Серый текст */
	--white-fon: #ffffff;   /* Фон блоков — белый */

    --border:rgba(0,0,0,0.10); /* Бордер на светлом фоне */

}

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat', sans-serif;

    background:var(--bg);

    color:var(--white);

    line-height:1.6;

    overflow-x:hidden;
}

.container{

    width:70%;
    max-width:1400px;

    margin:auto;
}

.container-wide{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* ========================= */
/* HEADER */
/* ========================= */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(3,166,166,0.55);

    backdrop-filter:blur(12px);

    border-bottom:1px solid var(--border);
}

.header-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 0;
}

.logo{

    font-size:36px;

    font-weight:900;

    font-style:italic;

    color:var(--yellow);

    letter-spacing:1px;
}

.logo img{
    height:48px;
    width:auto;
    display:block;
}

.nav{

    display:flex;

    gap:22px;
}

.nav a{

    text-decoration:none;

    font-weight:500;

    transition:0.3s;
}

.nav a:hover{

    color:var(--yellow);
}

/* --- Цвет ссылок навигации в шапке --- */
/* Меняйте только здесь, не затрагивая другие тексты */
.nav-link{
    color:#ffffff;
}

.header-btn{

    padding:15px 28px;

    background:var(--green);

    color:#fff;

    border-radius:6px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;
}

.header-btn:hover{

    transform:translateY(-2px);

    background:var(--green-dark);
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{

    position:relative;

    min-height:50vh;

    display:flex;

    align-items:flex-start;

    padding:150px 0 60px;

    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.82)),
    url('https://www.accelustires.com/sites/default/files/styles/1920x945/public/2022-12/hero-tbr-wrapped-up-4-belt%5B1%5D.jpg.webp?itok=rSDCZLPr');

    background-size:cover;

    background-position:center;
}

.hero::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    background:radial-gradient(circle, rgba(3,166,166,0.15), transparent);

    top:-250px;
    right:-150px;
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;
}

.hero h1{

    font-size:42px;

    line-height:1.05;

    margin-bottom:35px;

    font-weight:600;
}

.hero p{

    font-size:20px;

    max-width:680px;

    margin-bottom:40px;
}

/* --- Цвет текста (p) в hero-секции --- */
/* Меняйте только здесь, не затрагивая другие тексты */
.hero-text{
    color:#ffffff;
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.btn-main{

    background:var(--green);

    color:#fff;

    padding:18px 34px;

    border-radius:6px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;
}

.btn-main:hover{

    background:var(--green-dark);

    transform:translateY(-2px);
}

.btn-secondary{

    border:1px solid rgba(3,166,166,0.6);

    color:var(--green);

    padding:18px 34px;

    border-radius:6px;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;
}

/* --- Блок автоопределения региона (перенесён с сайта Андрея) --- */
.region-box{
    margin-top:32px;
    max-width:640px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.14);
    border-left:4px solid #feca11;
    border-radius:6px;
    padding:18px 22px;
}

.region-box strong{
    display:block;
    font-size:16px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:6px;
}

.region-box strong span{
    font-weight:400;
}

.region-box > span{
    display:inline;
    font-size:14px;
    color:rgba(255,255,255,0.75);
}

.region-box button{
    border:0;
    background:transparent;
    color:#03a6a6;
    text-decoration:underline;
    cursor:pointer;
    font-family:inherit;
    font-weight:600;
    font-size:14px;
    margin-left:4px;
    padding:0;
}

.region-box button:hover{
    color:#feca11;
}

/* --- Регулятор отступа между region-box и наезжающей карточкой value-strip --- */
/* Увеличьте height, чтобы опустить карточку value-strip ниже (больше воздуха) */
/* Уменьшите height (вплоть до 0), чтобы поднять карточку выше, ближе к region-box */
.hero-spacer{
    height:60px;
}

/* ========================= */
/* VALUE STRIP — перенесено с сайта Андрея */
/* ========================= */

.value-strip{
    position:relative;
    background:transparent;
    padding:0;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:0;
    background:var(--bg-card);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,0.18);
    transform:translateY(-55px);
}

.value-item{
    padding:34px 30px;
    border-right:1px solid var(--border);
}

.value-item:last-child{
    border-right:0;
}

/* Первые две карточки — центрированные */
.value-item:nth-child(1),
.value-item:nth-child(2){
    text-align:center;
}

.value-item:nth-child(1) .value-icon,
.value-item:nth-child(2) .value-icon{
    margin-left:auto;
    margin-right:auto;
}

.value-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(3,166,166,0.10);
    color:var(--green-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:17px;
    margin-bottom:18px;
}

.value-item h3{
    font-size:19px;
    margin-bottom:10px;
    line-height:1.3;
}

.value-item p{
    color:#555555;
    font-size:14px;
    line-height:1.5;
}

/* ========================= */
/* STATS */
/* ========================= */

.stats{

    background: var(--bg);

    padding:90px 0;

    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.stat-card{

    text-align:center;
}

.stat-card h2{

    font-size:48px;

    color:var(--yellow);

    margin-bottom:10px;
}

.stat-card p{

    color:#444444;

    font-size:18px;
}

/* ========================= */
/* SECTIONS */
/* ========================= */

section{

    padding:130px 0;
}

.section-top{

    margin-bottom:70px;
}

.section-top span{

    color:var(--yellow);

    text-transform:uppercase;

    font-size:14px;

    letter-spacing:3px;
}

.section-top h2{

    font-size:48px;

    margin-top:20px;

    max-width:760px;

    line-height:1.1;
}

/* ========================= */
/* EASY / PROBLEM (заменяет ABOUT) */
/* ========================= */

.white{
    background:var(--white-fon);
}

.eyebrow{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--green-dark);

    text-transform:uppercase;

    font-size:13px;

    font-weight:800;

    letter-spacing:2.4px;

    margin-bottom:18px;
}

.eyebrow::before{

    content:'';

    width:34px;

    height:3px;

    background:var(--green);

    border-radius:99px;
}

.lead-text{

    color:#444444;

    font-size:18px;

    max-width:760px;

    margin-top:22px;
}

.problem-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.problem-card{

    background:var(--bg-card);

    padding:40px 34px;

    border-radius:12px;

    border:1px solid var(--border);

    transition:0.3s;
}

.problem-card:hover{

    transform:translateY(-8px);

    border-color:rgba(3,166,166,0.20);
}

.problem-card .tag{

    display:inline-flex;

    align-items:center;

    gap:6px;

    background:rgba(3,166,166,0.10);

    color:var(--green-dark);

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    border-radius:999px;

    padding:7px 14px;

    margin-bottom:20px;
}

.problem-card .tag svg{
    flex-shrink:0;
}

.problem-card h3{

    font-size:20px;

    margin-bottom:14px;

    line-height:1.3;
}

.problem-card p{

    color:#555555;

    font-size:15px;

    line-height:1.6;
}

/* ========================= */
/* СИЛЬНЫЕ ТИПОРАЗМЕРЫ */
/* ========================= */

.light{
    background:var(--bg);
}

.product-focus{

    display:grid;

    grid-template-columns:1.2fr 0.8fr;

    gap:30px;

    align-items:stretch;
}

.product-big{

    background:var(--bg-card);

    border-radius:12px;

    overflow:hidden;

    border:1px solid transparent;

    transition:0.3s;

    display:flex;

    flex-direction:column;
}

.product-big:hover{

    transform:translateY(-6px);

    border-color:rgba(3,166,166,0.20);
}

.product-visual{

    min-height:320px;

    flex:1;

    display:flex;

    align-items:flex-end;

    padding:34px;

    background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.55)),
    url('https://www.accelustires.com/sites/default/files/styles/400x300/public/2022-12/ac95%5B1%5D_0.png.webp?itok=rN_tJQ9J');

    background-size:cover;

    background-position:center;
}

.product-body{

    flex-shrink:0;

    padding:35px;
}

.product-visual h3{

    font-size:42px;

    line-height:1;

    color:#ffffff;

    margin-bottom:8px;
}

.product-body h3{

    font-size:24px;

    line-height:1.3;

    margin-bottom:14px;
}

.product-body p{

    color:#444444;

    margin-bottom:20px;
}

.size-badges{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:22px;
}

.size-badge{

    display:inline-flex;

    background:rgba(3,166,166,0.10);

    color:var(--green-dark);

    border:1px solid rgba(3,166,166,0.20);

    border-radius:999px;

    padding:8px 14px;

    font-weight:700;

    font-size:13px;
}

.proof-line{

    margin-top:10px;

    padding-top:22px;

    border-top:1px dashed var(--border);

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

    flex-wrap:wrap;
}

.proof-line p{

    color:#666666;

    font-size:14px;

    margin:0;

    max-width:360px;
}

.proof-line a{

    font-size:14px;

    font-weight:700;

    color:var(--green-dark);

    text-decoration:none;

    white-space:nowrap;
}

.proof-line a:hover{

    text-decoration:underline;
}

.catalog-strip{

    margin-top:30px;

    background:var(--bg-card);

    border:1px solid var(--border);

    border-radius:12px;

    padding:30px 36px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:24px;

    flex-wrap:wrap;

    transition:transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.catalog-strip:hover{
    transform:translateY(-6px);

    border-color:rgba(3,166,166,0.20);
}

.catalog-strip-left{

    display:flex;

    align-items:center;

    gap:18px;
}

.catalog-icon{

    flex-shrink:0;

    width:46px;

    height:46px;

    border-radius:10px;

    background:rgba(3,166,166,0.10);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--green-dark);
}

.catalog-strip-left h3{

    font-size:18px;

    margin-bottom:4px;
}

.catalog-strip-left p{

    color:#666666;

    font-size:14px;

    max-width:420px;
}

.catalog-strip .btn-secondary{

    padding:14px 26px;

    white-space:nowrap;
}

.product-stack{

    display:grid;

    gap:30px;
}

.product-small{

    background:var(--bg-card);

    border-radius:12px;

    overflow:hidden;

    border:1px solid transparent;

    transition:0.3s;
}

.product-small:hover{

    transform:translateY(-6px);

    border-color:rgba(3,166,166,0.20);
}

.product-visual-sm{

    height:140px;

    background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.45)),
    url('https://www.accelustires.com/sites/default/files/styles/400x300/public/2022-12/ac95%5B1%5D_0.png.webp?itok=rN_tJQ9J');

    background-size:cover;

    background-position:center;
}

.product-small-body{

    padding:30px 32px;
}

.mini-title{

    color:var(--green-dark);

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:1.4px;

    font-size:12px;

    margin-bottom:14px;
}

.product-small h3{

    font-size:20px;

    line-height:1.3;

    margin-bottom:12px;
}

.product-small p{

    color:#444444;

    font-size:15px;
}

/* ========================= */
/* ГАРАНТИЯ — КАК ЭТО РАБОТАЕТ */
/* ========================= */

.warranty-block{

    display:grid;

    grid-template-columns:0.85fr 1.15fr;

    gap:56px;

    align-items:center;

    background:#ffffff;

    border-radius:20px;

    padding:56px;

    box-shadow:0 25px 60px rgba(0,0,0,0.08);

    border:1px solid var(--border);
}

.warranty-mark{

    width:170px;

    height:170px;

    border-radius:50%;

    background:var(--green);

    color:#fff;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    margin:auto;

    box-shadow:0 20px 40px rgba(3,166,166,0.25);
}

.warranty-mark strong{

    font-size:42px;

    line-height:1;
}

.warranty-mark span{

    font-size:12px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-top:8px;

    max-width:110px;
}


.warranty-img{
    display:none;
    width:100%;
    height:100%;
    object-fit:contain;
}


.warranty-mark--image{
    border-radius:0;
    background:transparent;
    box-shadow:none;
}
.warranty-mark--image .warranty-img{
    display:block;
}
.warranty-mark--image strong,
.warranty-mark--image span{
    display:none;
}

.warranty-content h2{

    font-size:36px;

    line-height:1.2;

    margin-bottom:18px;
}

.warranty-content p{

    color:#444444;

    font-size:17px;

    margin-bottom:26px;
}

.check-list{

    list-style:none;

    display:grid;

    gap:14px;
}

.check-list li{

    position:relative;

    padding-left:34px;

    color:#444444;

    font-size:15px;
}

.check-list li::before{

    content:'✓';

    position:absolute;

    left:0;

    top:0;

    width:22px;

    height:22px;

    border-radius:50%;

    background:rgba(3,166,166,0.13);

    color:var(--green-dark);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:900;
}

/* ========================= */
/* ЗАПУСК ПРОДАЖ */
/* ========================= */

.support-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.support-card{

    background:var(--bg-card);

    padding:40px 34px;

    border-radius:12px;

    border:1px solid transparent;

    transition:0.3s;
}

.support-card:hover{

    transform:translateY(-8px);

    border-color:rgba(3,166,166,0.20);
}

.support-card h3{

    font-size:22px;

    line-height:1.3;

    margin-bottom:16px;
}

.support-card p{

    color:#444444;

    font-size:15px;

    line-height:1.6;
}

/* ========================= */
/* КАК СТАТЬ ДИЛЕРОМ */
/* ========================= */

.step-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;
}

.step-card{

    background:var(--bg);

    border-radius:12px;

    padding:32px;

    min-height:150px;

    border:1px solid transparent;

    transition:0.3s;
}

.step-card:hover{

    transform:translateY(-6px);

    border-color:rgba(3,166,166,0.20);
}

.step-card h3{

    font-size:32px;

    color:var(--green-dark);

    margin-bottom:16px;

    display:flex;

    align-items:center;
}

.step-card h3 svg{
    flex-shrink:0;
}

.step-card p{

    font-size:15px;

    color:#444444;

    font-weight:600;

    line-height:1.5;
}

/* ========================= */
/* ЗАЯВКА НА ДИЛЕРСТВО */
/* ========================= */

.cta-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.form-card{

    background:var(--bg-light);

    padding:50px;

    border-radius:12px;
}

.form-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:18px;
}

.form-grid input,
.form-grid select,
.form-grid textarea{

    background:var(--bg-card);

    border:1px solid var(--border);

    padding:16px 18px;

    color:var(--white);

    border-radius:6px;

    font-family:'Montserrat';

    font-size:14px;

    width:100%;
}

.form-grid textarea{

    min-height:120px;

    resize:none;

    grid-column:1/-1;
}

.form-grid button{

    grid-column:1/-1;

    background:var(--green);

    border:none;

    color:#fff;

    padding:18px;

    border-radius:6px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

.form-grid button:hover{

    background:var(--green-dark);
}

.form-note{

    grid-column:1/-1;

    color:#8a8a8a;

    font-size:12px;

    line-height:1.5;
}

/* ========================= */
/* CTA */
/* ========================= */

.cta-form{
    background: var(--white-fon);
}

.cta-left span{
    color:var(--yellow);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
}

.cta-left h2{
    font-size:48px;
    line-height:1.1;
    margin:20px 0 30px;
}

.cta-left p{
    font-size:20px;
    color:#444444;
    margin-bottom:35px;
    max-width:550px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

    background:#014f4f;   /* Тёмная бирюза — как футер официального Accelus */

    padding:60px 0;

    border-top:1px solid rgba(3,166,166,0.3);
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;
}

.footer-logo{

    font-size:44px;

    font-weight:900;

    font-style:italic;

    color:#ffffff;

    margin-bottom:25px;
}

.footer-text{

    color:#c8e8e8;

    max-width:420px;
}

.footer-column h4{

    color:#ffffff;

    margin-bottom:20px;
}

.footer-column a{

    display:block;

    color:#c8e8e8;

    text-decoration:none;

    margin-bottom:12px;

    transition:0.3s;
}

.footer-column a:hover{

    color:#ffffff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1200px){

    .container,
    .container-wide{
        width:85%;
    }

    .stats-grid,
    .problem-grid,
    .support-grid,
    .step-grid,
    .value-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .value-grid{
        transform:none;
        box-shadow:none;
        margin-bottom:0;
    }

    .footer-grid,
    .cta-grid,
    .product-focus,
    .warranty-block{
        grid-template-columns:1fr;
    }

}

/* --- Промежуточный брейкпоинт: планшеты, небольшие ноутбуки --- */
@media(max-width:1280px){

    .header-inner{
        flex-wrap:wrap;
        gap:12px;
    }

    .nav{
        order:3;
        width:100%;
        justify-content:center;
        gap:24px;
    }

    .logo{
        font-size:28px;
    }

    .logo img{
        height:40px;
    }

    .header-btn{
        padding:12px 22px;
        font-size:14px;
    }

}

@media(max-width:768px){

    /* --- Контейнер --- */
    .container,
    .container-wide{
        width:92%;
    }

    /* --- Отступы секций --- */
    section{
        padding:70px 0;
    }

    .section-top{
        margin-bottom:40px;
    }

    /* --- Header: логотип по центру, кнопка под ним --- */
    .header-inner{
        flex-wrap:wrap;
        justify-content:center;
        align-items:center;
        padding:16px 0;
        gap:10px;
    }

    .nav{
        display:none;
    }

    .logo{
        font-size:26px;
        width:100%;
        text-align:center;
    }

    .logo img{
        display:inline-block;
        margin:0 auto;
    }

    .header-btn{
        padding:10px 18px;
        font-size:14px;
        width:100%;
        text-align:center;
        order:3;
    }

    /* --- Hero --- */
    .hero{
        min-height:100vh;
        padding:150px 0 60px;
        align-items:flex-start;
    }

    .hero h1{
        font-size:28px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .hero-text{
        font-size:16px;
        margin-bottom:28px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
    }

    .btn-main,
    .btn-secondary{
        padding:14px 24px;
        text-align:center;
    }

    .hero-spacer{
        height:20px;
    }

    /* --- Заголовки секций --- */
    .section-top h2{
        font-size:26px;
    }

    .warranty-block{
        padding:30px 24px;
        gap:30px;
    }

    .warranty-content h2{
        font-size:26px;
    }

    .warranty-mark{
        width:130px;
        height:130px;
    }

    .warranty-mark strong{
        font-size:32px;
    }

    /* --- Все гриды → 1 колонка --- */
    .stats-grid,
    .problem-grid,
    .support-grid,
    .step-grid,
    .form-grid,
    .value-grid{
        grid-template-columns:1fr;
    }

    .value-item{
        border-right:0;
        border-bottom:1px solid var(--border);
    }

    .footer-grid,
    .cta-grid,
    .product-focus,
    .product-stack{
        grid-template-columns:1fr;
        gap:40px;
    }

    .form-card{
        padding:30px 24px;
    }

    .product-visual{
        min-height:220px;
        padding:24px;
    }

    .product-visual h3{
        font-size:32px;
    }

    .product-body,
    .product-small-body{
        padding:26px 24px;
    }

    .product-visual-sm{
        height:120px;
    }

    .proof-line{
        flex-direction:column;
        align-items:flex-start;
    }

    /* --- Stats --- */
    .stat-card h2{
        font-size:36px;
    }

    .stat-card p{
        font-size:16px;
    }

    /* --- Problem cards --- */
    .problem-card{
        padding:30px 24px;
    }

    .problem-card h3{
        font-size:18px;
    }

    /* --- Support cards --- */
    .support-card{
        padding:30px 24px;
    }

    .support-card h3{
        font-size:18px;
    }

    /* --- CTA form --- */
    .cta-left h2{
        font-size:26px;
    }

    .cta-left p{
        font-size:16px;
    }

    /* --- Footer --- */
    .footer-logo{
        font-size:32px;
    }

    .footer-grid{
        gap:28px;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:24px;
    }

    .section-top h2{
        font-size:22px;
    }

    .stats{
        padding:50px 0;
    }

    .header-inner{
        flex-direction:column;
        align-items:stretch;
    }

    .logo{
        text-align:center;
    }

    .header-btn{
        order:3;
    }

}

/* ========================= */
/* МОДАЛЬНЫЕ ОКНА */
/* ========================= */

.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    pointer-events:none;
    transition:opacity 0.3s;
}

.modal-overlay--open{
    opacity:1;
    pointer-events:auto;
}

.modal{
    background:var(--bg-card);
    border-radius:12px;
    padding:40px;
    max-width:560px;
    width:92%;
    max-height:85vh;
    overflow-y:auto;
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
    position:relative;
}

.modal__close{
    position:absolute;
    top:12px;
    right:16px;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
    color:var(--gray);
    line-height:1;
}

.modal__close:hover{
    color:var(--green-dark);
}

.modal h2{
    font-size:24px;
    margin-bottom:20px;
    color:var(--white);
}

.modal h3{
    font-size:18px;
    margin:20px 0 10px;
    color:var(--white);
}

.modal p, .modal li{
    font-size:14px;
    color:var(--gray);
    line-height:1.7;
    margin-bottom:8px;
}

.modal ul{
    list-style:disc;
    padding-left:20px;
    margin-bottom:16px;
}

/* --- Модалка выбора региона --- */
.region-search{
    width:100%;
    padding:14px 16px;
    border:1px solid var(--border);
    border-radius:8px;
    font-family:inherit;
    font-size:15px;
    margin-bottom:16px;
    background:var(--bg-light);
    color:var(--white);
}

.region-list{
    list-style:none;
    padding:0;
    max-height:300px;
    overflow-y:auto;
}

.region-list li{
    padding:12px 16px;
    cursor:pointer;
    border-radius:6px;
    transition:background 0.2s;
    color:var(--white);
    font-size:15px;
}

.region-list li:hover,
.region-list li:focus{
    background:rgba(3,166,166,0.10);
    outline:none;
}

.region-list .region-list--active{
    background:rgba(3,166,166,0.15);
    font-weight:700;
}

/* --- Cookie-баннер --- */
.cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    z-index:9998;
    background:var(--bg-card);
    border-top:1px solid var(--border);
    padding:20px 24px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
    box-shadow:0 -8px 30px rgba(0,0,0,0.10);
    transform:translateY(100%);
    transition:transform 0.4s;
}

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

.cookie-banner p{
    font-size:14px;
    color:var(--gray);
    max-width:640px;
    line-height:1.5;
}

.cookie-banner p a{
    color:var(--green-dark);
    text-decoration:underline;
}

.cookie-btn{
    padding:12px 28px;
    background:var(--green);
    color:#fff;
    border:none;
    border-radius:6px;
    font-weight:700;
    font-family:inherit;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
    white-space:nowrap;
}

.cookie-btn:hover{
    background:var(--green-dark);
}

/* --- Кнопки выбора в модалке региона --- */
.region-choice-btn{
    display:flex;
    align-items:center;
    gap:12px;
    width:100%;
    padding:18px 22px;
    margin-bottom:12px;
    background:var(--bg-light);
    border:1px solid var(--border);
    border-radius:10px;
    cursor:pointer;
    font-family:inherit;
    font-size:16px;
    font-weight:600;
    color:var(--white);
    transition:0.25s;
    text-align:left;
}

.region-choice-btn:hover{
    background:rgba(3,166,166,0.08);
    border-color:rgba(3,166,166,0.30);
}

.region-choice-btn svg{
    flex-shrink:0;
    color:var(--green-dark);
}

.region-back-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:none;
    border:none;
    color:var(--green-dark);
    font-family:inherit;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    padding:0 0 12px 0;
    margin-bottom:4px;
}

.region-back-btn:hover{
    color:var(--green);
}

/* --- Ссылки в form-note --- */
.form-note a{
    color:var(--green-dark);
    text-decoration:underline;
}

.form-note a:hover{
    color:var(--green);
}

