:root{
    --navy:#13233f;
    --navy-d:#0d1a30;
    --navy-l:#1c2f50;
    --steel:#8a97ab;
    --steel-l:#aeb9c9;
    --orange:#e8772a;
    --orange-l:#f59042;
    --paper:#f4f6f9;
    --line:rgba(255,255,255,.09);
    --maxw:1400px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    font-family:'Golos Text',sans-serif;
    background:var(--navy);
    color:#e8edf4;
    line-height:1.6;
    overflow-x:hidden;
    position:relative;
}
h1,h2,h3,.display{font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.01em;line-height:1.05}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
a{color:inherit;text-decoration:none}

/* ── ФИКСИРОВАННАЯ СЕТКА (НЕ ПЕРЕКРЫВАЕТ КЛИКИ) ── */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px),
                      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.4;
    mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}

/* ── ГРАДИЕНТ (НА ВСЕХ СТРАНИЦАХ) ── */
body {
    background: radial-gradient(140% 80% at 80% 0%, rgba(232,119,42,.12), transparent 65%),
                linear-gradient(160deg, var(--navy-d) 0%, var(--navy) 60%, var(--navy-l) 120%);
}

/* ── HERO (ДОПОЛНИТЕЛЬНЫЙ СЛОЙ ДЛЯ ЯРКОСТИ) ── */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden
}
.hero-grid {
    display: none;
}
.climber{position:absolute;right:12%;top:0;height:100%;width:200px;z-index:2;opacity:0.7;pointer-events:none}
.rope{position:absolute;top:0;width:2px;background:linear-gradient(var(--steel),rgba(138,151,171,.15));height:46%}
.rope.r1{left:85px}
.rope.r2{left:110px;height:40%;opacity:.5}
.figure{position:absolute;top:38%;left:55px;width:100px;height:130px;animation:sway 6s ease-in-out infinite;transform-origin:top center}
@keyframes sway{0%,100%{transform:rotate(-2.2deg)}50%{transform:rotate(2.2deg)}}
.hero-inner{position:relative;z-index:3;padding-top:90px}
.eyebrow{display:inline-flex;align-items:center;gap:10px;font-family:'Oswald';font-weight:500;letter-spacing:.22em;font-size:13px;color:var(--orange-l);margin-bottom:22px;opacity:0;animation:rise .7s .1s forwards}
.eyebrow::before{content:"";width:34px;height:2px;background:var(--orange)}
.hero h1{font-size:clamp(42px,9vw,100px);font-weight:700;color:#fff;margin-bottom:8px}
.hero h1 .o{color:var(--orange)}
.hero h1 span{display:block;opacity:0;animation:rise .8s forwards}
.hero h1 span:nth-child(1){animation-delay:.18s}
.hero h1 span:nth-child(2){animation-delay:.30s}
.hero .sub{font-size:clamp(16px,2.2vw,20px);color:var(--steel-l);max-width:560px;margin:24px 0 38px;font-weight:400;opacity:0;animation:rise .8s .5s forwards}
.hero .sub b{color:#fff;font-weight:600}
.hero-cta{display:flex;gap:16px;flex-wrap:wrap;opacity:0;animation:rise .8s .65s forwards}
.btn{font-family:'Oswald';font-weight:600;letter-spacing:.06em;font-size:17px;padding:14px 28px;border-radius:2px;transition:transform .2s,background .2s,box-shadow .2s;display:inline-flex;align-items:center;gap:10px}
.btn-primary{background:var(--orange);color:#fff;box-shadow:0 10px 30px -10px rgba(232,119,42,.6)}
.btn-primary:hover{transform:translateY(-3px);background:var(--orange-l)}
.btn-ghost{border:1.5px solid var(--steel);color:#fff}
.btn-ghost:hover{border-color:#fff;transform:translateY(-3px)}
@keyframes rise{from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:translateY(0)}}

/* ── SECTION SHELL ── */
section{padding:80px 0;position:relative;z-index:1}
.sec-head{margin-bottom:48px;max-width:680px}
.sec-tag{font-family:'Oswald';letter-spacing:.2em;font-size:13px;color:var(--orange);font-weight:500;margin-bottom:14px;display:flex;align-items:center;gap:10px}
.sec-tag::before{content:"";width:24px;height:2px;background:var(--orange)}
.sec-head h2{font-size:clamp(30px,5vw,52px);font-weight:600;color:#fff}
.sec-head p{color:var(--steel-l);font-size:16px;margin-top:16px}

/* ── ADVANTAGES GRID ── */
#why{background:linear-gradient(0deg,rgba(232,119,42,.05),rgba(232,119,42,.05)),var(--navy)}
.adv-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1px solid var(--line);border-radius:6px;overflow:hidden}
.adv{padding:34px 22px;text-align:center;border-right:1px solid var(--line);transition:background .25s;display:flex;flex-direction:column;align-items:center;justify-content:center}
.adv:last-child{border-right:none}
.adv:hover{background:var(--navy-l)}
.adv .ico{width:40px;height:40px;margin:0 auto;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.adv .ico svg{width:36px;height:36px;stroke:var(--orange);fill:none;stroke-width:1.5;transition:transform .25s}
.adv:hover .ico svg{transform:translateY(-3px)}
.adv .lbl{font-size:14px;color:var(--steel-l);margin-top:14px;text-align:center;word-break:keep-all}

/* ── SERVICES GRID ── */
#services{background:var(--navy-d)}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.service-card {
    background: linear-gradient(160deg, var(--navy-l), var(--navy-d));
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
    transition: transform 0.25s, border-color 0.25s;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
}
.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-transform: none;
}
.service-card p {
    color: var(--steel-l);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}
.service-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--orange);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
}
.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 119, 42, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.6;
}

/* ── АКЦИИ (промо-карусель) ── */
.promo-carousel{position:relative;border-radius:8px;overflow:hidden;box-shadow:0 24px 60px -24px rgba(232,119,42,.6)}
.pcar-track{display:flex;transition:transform .55s cubic-bezier(.4,0,.2,1)}
.promo-slide{min-width:100%;background:linear-gradient(100deg,var(--orange),var(--orange-l))}
.promo-inner{max-width:1000px;margin:0 auto;padding:40px 60px;min-height:120px;display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap}
.promo-text{flex:1 1 460px}
.promo-slide h3{font-family:'Oswald';font-weight:700;font-size:clamp(23px,3.3vw,33px);color:#fff;text-transform:uppercase;line-height:1.1}
.promo-slide p{color:rgba(255,255,255,.92);margin-top:8px;font-size:16px;max-width:600px}
.promo-slide .btn-primary{flex:none;background:#fff;color:var(--navy);box-shadow:none}
.promo-slide .btn-primary:hover{background:var(--navy);color:#fff}
.pcar-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:42px;height:42px;border-radius:50%;border:none;background:rgba(19,35,63,.28);backdrop-filter:blur(4px);color:#fff;font-size:20px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s}
.pcar-btn:hover{background:rgba(19,35,63,.55)}
.pcar-btn.prev{left:14px}
.pcar-btn.next{right:14px}
.pcar-dots{display:flex;gap:9px;justify-content:center;margin-top:22px}
.pcar-dots .dot{width:9px;height:9px;border-radius:50%;background:var(--line);border:1px solid var(--steel);cursor:pointer;transition:background .2s,transform .2s}
.pcar-dots .dot.active{background:var(--orange);border-color:var(--orange);transform:scale(1.3)}

/* ── КАРУСЕЛЬ (общая) ── */
.carousel{position:relative;border:1px solid var(--line);border-radius:8px;overflow:hidden;background:var(--navy-d)}
.car-track{display:flex;transition:transform .55s cubic-bezier(.4,0,.2,1)}
.slide{min-width:100%;position:relative;aspect-ratio:16/9;background:var(--navy-d)}
.slide img{width:100%;height:100%;object-fit:cover;display:block}
.slide .cap{position:absolute;left:0;right:0;bottom:0;padding:22px 26px;font-size:15px;color:#fff;background:linear-gradient(0deg,rgba(13,26,48,.92),transparent)}
.car-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:48px;height:48px;border-radius:50%;border:none;background:rgba(13,26,48,.6);backdrop-filter:blur(6px);color:#fff;font-size:22px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s}
.car-btn:hover{background:var(--orange)}
.car-btn.prev{left:18px}
.car-btn.next{right:18px}
.car-dots{display:flex;gap:9px;justify-content:center;margin-top:22px}
.dot{width:9px;height:9px;border-radius:50%;background:var(--line);border:1px solid var(--steel);cursor:pointer;transition:background .2s,transform .2s}
.dot.active{background:var(--orange);border-color:var(--orange);transform:scale(1.3)}
.car-empty{aspect-ratio:16/9;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;color:var(--steel);text-align:center;padding:30px}
.car-empty svg{width:54px;height:54px;stroke:var(--steel);opacity:.6}
.car-empty b{color:var(--steel-l);font-family:'Oswald';font-weight:500;letter-spacing:.04em}

/* ── CONTACT ── */
#contact{background:var(--navy-d);text-align:center}
#contact h2{font-size:clamp(34px,6vw,68px);font-weight:700;color:#fff}
#contact h2 .o{color:var(--orange)}
#contact p{color:var(--steel-l);font-size:18px;margin:18px auto 38px;max-width:520px}
.phone-big{font-family:'Oswald';font-weight:700;font-size:clamp(34px,7vw,64px);color:#fff;display:inline-block;margin-bottom:30px;letter-spacing:.02em;transition:color .2s}
.phone-big:hover{color:var(--orange)}
.contact-meta{display:flex;gap:30px;justify-content:center;flex-wrap:wrap;color:var(--steel);font-size:15px;margin-top:34px;border-top:1px solid var(--line);padding-top:30px}
.contact-actions{display:flex;gap:15px;justify-content:center;flex-wrap:wrap;margin-bottom:8px}
.contact-btn{display:inline-flex;align-items:center;gap:10px;font-family:'Oswald';font-weight:600;letter-spacing:.04em;font-size:17px;padding:14px 28px;border-radius:50px;color:#fff;transition:transform .2s,box-shadow .2s,background .2s}
.contact-btn svg{width:21px;height:21px;flex:none}
.contact-btn:hover{transform:translateY(-3px)}
.cb-call{background:var(--orange);box-shadow:0 12px 28px -12px rgba(232,119,42,.65)}
.cb-call:hover{background:var(--orange-l)}
.cb-tg{background:#229ED9;box-shadow:0 12px 28px -12px rgba(34,158,217,.6)}
.cb-tg:hover{background:#2bb0ec}
.cb-wa{background:#25D366;box-shadow:0 12px 28px -12px rgba(37,211,102,.55)}
.cb-wa:hover{background:#2ee676}
.cb-max {
    background: linear-gradient(135deg, #4A69FF 0%, #9C3FE9 100%);
    border: none;
    box-shadow: 0 12px 28px -12px rgba(74,105,255,0.55);
}
.cb-max:hover {
    background: linear-gradient(135deg, #5A79FF 0%, #AC4FF9 100%);
}
.max-icon {
    display: inline-block;
    width: 21px;
    height: 21px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%234A69FF'/%3E%3Cstop offset='100%25' stop-color='%239C3FE9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='1' y='1' width='22' height='22' rx='6' fill='url(%23g)'/%3E%3Ctext x='12' y='17' text-anchor='middle' font-family='Arial' font-weight='900' font-size='12' fill='white'%3EM%3C/text%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

/* ── БЛОГ ── */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:18px}
.blog-card{display:flex;flex-direction:column;justify-content:space-between;gap:18px;min-height:150px;padding:26px;border:1px solid var(--line);border-radius:8px;background:linear-gradient(160deg,var(--navy-l),var(--navy-d));transition:transform .25s,border-color .25s}
.blog-card:hover{transform:translateY(-6px);border-color:var(--orange)}
.blog-card h3{font-family:'Oswald';font-weight:600;font-size:20px;color:#fff;line-height:1.2;text-transform:none}
.blog-card:hover h3{color:var(--orange-l)}
.blog-more{font-family:'Oswald';font-weight:500;letter-spacing:.04em;color:var(--orange);font-size:15px}

/* ── FOOTER ── */
footer{background:var(--navy-d);border-top:1px solid var(--line);padding:30px 0;color:var(--steel);font-size:14px}
footer .wrap{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px}
footer .logo{font-size:20px}

/* ── МОДАЛЬНЫЕ ОКНА ── */
.modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(13,26,48,0.95);backdrop-filter:blur(8px);z-index:1000;justify-content:center;align-items:center;opacity:0;transition:opacity .3s ease}
.modal.show{display:flex;opacity:1}
.modal-content{position:relative;max-width:650px;width:90%;background:linear-gradient(145deg,var(--navy-l),var(--navy-d));border:1px solid var(--line);border-radius:16px;padding:0;transform:scale(0.9);transition:transform .3s ease;box-shadow:0 30px 60px rgba(0,0,0,0.5)}
.modal.show .modal-content{transform:scale(1)}
.modal-header{padding:24px 28px 16px;border-bottom:1px solid var(--line);display:flex;justify-content:space-between;align-items:center}
.modal-header h3{font-family:'Oswald',sans-serif;font-size:26px;font-weight:600;color:var(--orange);text-transform:uppercase;margin:0;letter-spacing:0.02em}
.modal-close{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.1);border:none;color:var(--steel-l);font-size:24px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s ease}
.modal-close:hover{background:var(--orange);color:#fff;transform:rotate(90deg)}
.modal-body{padding:24px 28px 32px}
.modal-body p{color:var(--steel-l);font-size:16px;line-height:1.6;margin-bottom:20px}
.modal-features{list-style:none;margin:20px 0}
.modal-features li{padding:8px 0;padding-left:28px;position:relative;color:var(--steel-l);font-size:14px}
.modal-features li::before{content:"✓";position:absolute;left:0;color:var(--orange);font-weight:bold}
.modal-footer{padding:20px 28px 28px;border-top:1px solid var(--line);display:flex;gap:16px;flex-wrap:wrap}
.modal-footer .btn{flex:1;text-align:center;justify-content:center;padding:14px 20px;font-size:15px}
.article-modal .modal-content{max-width:720px}
.article-body{max-height:64vh;overflow-y:auto;padding-right:8px}
.article-body p{color:var(--steel-l);font-size:15.5px;line-height:1.7;margin-bottom:14px}
.article-body h4{font-family:'Oswald';font-weight:600;color:#fff;font-size:19px;margin:22px 0 10px;text-transform:none}
.article-body ul{list-style:none;margin:6px 0 18px;padding:0}
.article-body li{position:relative;padding-left:22px;color:var(--steel-l);font-size:15px;line-height:1.6;margin-bottom:9px}
.article-body li::before{content:"";position:absolute;left:0;top:9px;width:7px;height:7px;background:var(--orange);transform:rotate(45deg)}

/* ── TO TOP BUTTON ── */
.to-top{position:fixed;bottom:30px;right:30px;width:48px;height:48px;border-radius:50%;background:var(--orange);color:#fff;border:none;cursor:pointer;font-size:24px;font-weight:bold;opacity:0;visibility:hidden;transition:all .3s ease;z-index:99;box-shadow:0 4px 12px rgba(0,0,0,0.3);display:flex;align-items:center;justify-content:center}
.to-top.show{opacity:1;visibility:visible}
.to-top:hover{background:var(--orange-l);transform:translateY(-3px)}

/* ── ANIMATIONS ── */
.reveal{transition:opacity .7s,transform .7s}
.reveal.pre{opacity:0;transform:translateY(34px)}
.reveal.in{opacity:1;transform:none}
section[id]{scroll-margin-top:100px}
body.inner { padding-top: 90px; }

/* ── RESPONSIVE ── */
@media(max-width:1100px){
    .climber{display:none}
}
@media(max-width:860px){
    .adv-grid{grid-template-columns:repeat(2,1fr)}
    .adv:nth-child(2n){border-right:none}
    .adv:nth-last-child(-n+2){border-bottom:none}
    .adv{border-bottom:1px solid var(--line)}
    .services-grid{gap:16px}
    section{padding:60px 0}
    .hero{min-height:auto;padding-bottom:140px}
    .hero-inner{padding-top:100px;padding-bottom:20px}
    .car-btn,.pcar-btn{width:36px;height:36px;font-size:18px}
    .car-btn.prev{left:8px}
    .car-btn.next{right:8px}
    .sec-head{margin-bottom:32px}
    body.inner { padding-top: 70px; }
    
    /* Промо-карусель на планшетах */
    .promo-inner {
        padding: 30px 24px;
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }
    .promo-slide h3 {
        font-size: 22px;
    }
    .promo-slide p {
        font-size: 14px;
    }
    .pcar-btn {
        background: rgba(13, 26, 48, 0.4);
        backdrop-filter: blur(2px);
        opacity: 0.6;
    }
    .pcar-btn:hover {
        opacity: 1;
    }
}
@media(max-width:560px){
    .modal-footer{flex-direction:column}
    .modal-footer .btn{width:100%;text-align:center}
    .modal-header h3{font-size:20px}
    .modal-body{padding:20px}
    .service-card{padding:20px}
    .service-card h3{font-size:18px}
    
    /* Контакты на мобильных — кнопка MAX видна */
    .contact-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 15px;
        box-sizing: border-box;
    }
    .cb-max {
        display: inline-flex !important;
    }
}
@media(max-width:480px){
    .wrap{padding:0 16px}
    .hero h1{font-size:clamp(36px,8vw,80px)}
    .hero .sub{font-size:14px}
    .btn{font-size:15px;padding:12px 20px}
    .sec-head h2{font-size:clamp(26px,5vw,42px)}
    .contact-btn{padding:10px 20px;font-size:15px}
    .phone-big{font-size:clamp(28px,6vw,48px)}
    .adv-grid{grid-template-columns:1fr}
    .adv{border-right:none;border-bottom:1px solid var(--line)}
    .adv:last-child{border-bottom:none}
    .hero-cta .btn{width:100%;text-align:center;justify-content:center}
    .hero h1 span{display:inline}
    
    /* Промо-карусель на телефонах */
    .promo-inner {
        padding: 20px 16px;
    }
    .promo-slide h3 {
        font-size: 18px;
    }
    .promo-slide p {
        font-size: 13px;
    }
    .pcar-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
        opacity: 0.5;
    }
    .promo-carousel {
        max-height: 260px;
    }
}

/* ── ДОСТУПНОСТЬ: УМЕНЬШЕННАЯ АНИМАЦИЯ ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── ФОКУС ДЛЯ КЛАВИАТУРНОЙ НАВИГАЦИИ ── */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ── КАК МЫ РАБОТАЕМ ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.step {
    position: relative;
    background: linear-gradient(160deg, var(--navy-l), var(--navy-d));
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 24px 26px;
    transition: transform .25s, border-color .25s;
}
.step:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
}
.step .num {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: var(--orange);
    opacity: .85;
    margin-bottom: 16px;
}
.step h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    text-transform: none;
    margin-bottom: 10px;
}
.step p {
    color: var(--steel-l);
    font-size: 14px;
    line-height: 1.55;
}
.step::after {
    content: "→";
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 20px;
    z-index: 2;
}
.step:last-child::after { display: none; }
@media (max-width: 1000px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step::after { display: none; }
}
@media (max-width: 560px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* ── ФОРМА ЗАЯВКИ ── */
.lead-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(160deg, var(--navy-l), var(--navy-d));
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: left;
}
.lead-form-wrap h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}
.lead-form-wrap .form-note {
    color: var(--steel-l);
    font-size: 14px;
    margin-bottom: 24px;
}
.lead-form .field {
    margin-bottom: 16px;
}
.lead-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--steel-l);
    margin-bottom: 6px;
    letter-spacing: .02em;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    background: rgba(13, 26, 48, .6);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-family: 'Golos Text', sans-serif;
    font-size: 15px;
    transition: border-color .2s, box-shadow .2s;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 119, 42, .15);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: var(--steel); }
.lead-form select { cursor: pointer; }
.lead-form select option { background: var(--navy-d); color: #fff; }
.lead-form textarea { resize: vertical; min-height: 80px; }
.lead-form .form-error {
    display: none;
    color: #ff8a7a;
    font-size: 13px;
    margin-top: 5px;
}
.lead-form .field.invalid input { border-color: #ff8a7a; }
.lead-form .field.invalid .form-error { display: block; }
.lead-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.lead-form-actions .btn { flex: 1; justify-content: center; min-width: 200px; }
.lead-form .privacy-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--steel);
    line-height: 1.5;
}
@media (max-width: 560px) {
    .lead-form-wrap { padding: 26px 18px; }
    .lead-form-actions .btn { width: 100%; }
}
