*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#f7f5f4;
color:#1f1f1f;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1400px;
margin:0 auto;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

/* ================= HEADER ================= */

.header{
    position:sticky;
    top:0;
    z-index:999;

    background:rgba(255,255,255,.97);
    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(139,13,35,.08);

    padding:18px 0;

    box-shadow:0 5px 25px rgba(0,0,0,.04);
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo{
    font-size:38px;
    font-weight:900;
    color:#8b0d23;
    letter-spacing:-1px;
    transition:.3s;
}

.logo:hover{
    transform:translateY(-2px);
}

/* MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:10px;
}

.nav-menu a{
    position:relative;

    padding:12px 18px;

    border-radius:14px;

    font-size:16px;
    font-weight:700;

    color:#333;

    transition:.3s;
}

.nav-menu a:hover{
    background:#f7ecef;
    color:#8b0d23;
}

/* активний пункт меню */

.nav-menu a.active{
    background:#8b0d23;
    color:#fff;
}

/* BUTTONS */

.header-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.login-btn{
    height:50px;
    padding:0 24px;

    border:2px solid #8b0d23;
    border-radius:14px;

    background:#fff;

    color:#8b0d23;
    font-weight:700;

    transition:.3s;
}

.login-btn:hover{
    background:#8b0d23;
    color:#fff;
}

.main-btn{
    height:50px;
    padding:0 26px;

    border:none;
    border-radius:14px;

    background:linear-gradient(135deg,#a30026,#6d0018);

    color:#fff;
    font-weight:700;

    box-shadow:0 10px 25px rgba(139,13,35,.25);

    transition:.3s;
}

.main-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(139,13,35,.35);
}

/* ================= PROFILE ================= */

.profile-dropdown{
position:relative;
}

.profile-btn{
height:56px;
padding:0 24px;
border:none;
border-radius:16px;
background:#f5f5f5;
display:flex;
align-items:center;
gap:12px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.profile-btn:hover{
background:#ececec;
}

.profile-menu{
position:absolute;
top:65px;
right:0;
width:260px;
background:#fff;
border-radius:20px;
padding:12px;
display:flex;
flex-direction:column;
gap:8px;
box-shadow:0 20px 50px rgba(0,0,0,.12);
border:1px solid #ececec;
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:.25s;
z-index:9999;
}

.profile-dropdown:hover .profile-menu,
.profile-menu:hover{
opacity:1;
visibility:visible;
transform:translateY(0);
}

.profile-menu a{
height:50px;
padding:0 18px;
display:flex;
align-items:center;
border-radius:12px;
font-size:15px;
font-weight:600;
color:#222;
transition:.3s;
}

.profile-menu a:hover{
background:#f7f3f3;
color:#8b0d23;
}

.profile-menu a:last-child{
color:#d11a2a;
}

.profile-menu a:last-child:hover{
background:#fff1f3;
}

/* ================= HOME PAGE ================= */

.home-hero{
padding:90px 0;
position:relative;
overflow:hidden;
}

.home-hero-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:80px;
}

.home-hero-content{
max-width:620px;
}

.home-badge{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 22px;
background:#f4e6e9;
border-radius:999px;
font-size:14px;
font-weight:800;
letter-spacing:2px;
text-transform:uppercase;
color:#8b0d23;
margin-bottom:28px;
}

.home-hero-content h1{
font-size:96px;
line-height:0.92;
font-weight:900;
color:#22030a;
margin-bottom:28px;
letter-spacing:-4px;
}

.home-hero-content p{
font-size:22px;
line-height:1.8;
color:#666;
margin-bottom:42px;
max-width:560px;
}

.home-buttons{
display:flex;
align-items:center;
gap:20px;
}

.home-outline-btn{
height:58px;
padding:0 34px;
border:2px solid #8b0d23;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
color:#8b0d23;
background:white;
transition:0.3s;
}

.home-outline-btn:hover{
background:#8b0d23;
color:white;
}

.home-hero-image{
display:flex;
justify-content:flex-end;
position:relative;
}

.home-image-card{
width:100%;
max-width:720px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
border-radius:44px;
padding:35px;
position:relative;
overflow:hidden;
box-shadow:0 25px 60px rgba(91,0,21,0.2);
}

.home-image-card::before{
content:"";
position:absolute;
width:320px;
height:320px;
background:rgba(255,255,255,0.08);
border-radius:50%;
top:-120px;
right:-120px;
}

.home-image-card img{
width:100%;
position:relative;
z-index:2;
}

/* ================= SERVICES PAGE ================= */

.services-modern-page{
padding:80px 0;
}

.services-hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;
margin-bottom:80px;
}

.services-hero-left h1{
font-size:78px;
line-height:0.95;
font-weight:900;
color:#22030a;
margin:25px 0;
letter-spacing:-3px;
}

.services-hero-left p{
font-size:21px;
line-height:1.8;
color:#666;
max-width:600px;
}

.services-hero-right{
display:flex;
justify-content:flex-end;
}

.hero-image-card{
width:100%;
max-width:700px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
border-radius:44px;
padding:35px;
overflow:hidden;
box-shadow:0 25px 60px rgba(91,0,21,0.2);
}

.hero-image-card img{
width:100%;
}

.breadcrumbs{
display:flex;
align-items:center;
gap:12px;
margin-bottom:25px;
}

.breadcrumbs a{
font-size:24px;
font-weight:500;
color:#999;
line-height:1;
}

.breadcrumbs span{
font-size:24px;
line-height:1;
color:#999;
}

.breadcrumbs .current-page{
color:#5e0a18;
font-weight:700;
}

.hero-mini-stats{
display:flex;
gap:20px;
margin-top:45px;
}

.mini-stat{
background:white;
padding:28px;
border-radius:24px;
min-width:160px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.mini-stat h3{
font-size:34px;
font-weight:900;
color:#8b0d23;
margin-bottom:10px;
}

.mini-stat p{
font-size:15px;
color:#777;
}

.services-modern-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-modern-card{
background:white;
padding:40px;
border-radius:30px;
border:1px solid #f0ebeb;
transition:0.3s;
}

.service-modern-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.service-modern-icon{
width:84px;
height:84px;
border-radius:24px;
background:#8b0d23;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:28px;
}

.service-modern-icon img{
width:42px;
height:42px;
object-fit:contain;
}

.service-modern-card h3{
font-size:30px;
font-weight:800;
color:#22030a;
margin-bottom:18px;
}

.service-modern-card p{
font-size:16px;
line-height:1.8;
color:#666;
margin-bottom:25px;
}

.service-modern-card ul{
list-style:none;
display:flex;
flex-direction:column;
gap:14px;
}

.service-modern-card ul li{
position:relative;
padding-left:28px;
font-size:15px;
color:#555;
}

.service-modern-card ul li::before{
content:"•";
position:absolute;
left:0;
top:-2px;
font-size:24px;
color:#8b0d23;
}

/* ================= TARIFFS PAGE ================= */

.tariffs-page{
padding:80px 0;
}

.tariffs-hero{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
margin-bottom:80px;
}

.tariffs-left{
position:relative;
top:0;
}

.tariffs-left h1{
font-size:78px;
line-height:0.95;
font-weight:900;
color:#22030a;
margin:25px 0;
}

.tariffs-left p{
font-size:21px;
line-height:1.8;
color:#666;
max-width:600px;
margin-bottom:35px;
}

.tariff-tabs{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.tariff-tabs button{
height:64px;
padding:0 34px;
border-radius:16px;
border:1px solid #ece6e6;
background:white;
font-size:16px;
font-weight:700;
cursor:pointer;
}

.tariff-tabs .active{
background:linear-gradient(135deg,#8b0d23,#5d0015);
color:white;
border:none;
}

.tariffs-right img{
width:100%;
max-width:700px;
margin-left:auto;
}

.hero-note{
margin-top:25px;
background:white;
padding:22px;
border-radius:24px;
display:flex;
align-items:center;
gap:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.hero-note img{
width:44px;
height:44px;
object-fit:contain;
}

.hero-note p{
font-size:15px;
line-height:1.6;
color:#666;
}

.tariff-cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-bottom:70px;
}

.tariff-card{
background:white;
padding:36px;
border-radius:30px;
border:1px solid #ece6e6;
position:relative;
transition:0.3s;
}

.tariff-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.tariff-card a{
cursor:pointer;
}

.tariff-card a:active{
transform:scale(0.98);
}

.tariff-card.popular{
border:2px solid #8b0d23;
}

.popular-badge{
position:absolute;
top:-14px;
left:50%;
transform:translateX(-50%);
padding:8px 18px;
background:#8b0d23;
border-radius:999px;
font-size:13px;
font-weight:700;
color:white;
}

.tariff-icon{
width:76px;
height:76px;
border-radius:22px;
background:#f8f2f2;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:24px;
}

.tariff-icon img{
width:38px;
height:38px;
}

.tariff-image-card{
width:100%;
max-width:720px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
border-radius:44px;
padding:35px;
position:relative;
overflow:hidden;
box-shadow:0 25px 60px rgba(91,0,21,0.2);
}

.tariff-image-card::before{
content:"";
position:absolute;
width:320px;
height:320px;
background:rgba(255,255,255,0.08);
border-radius:50%;
top:-120px;
right:-120px;
}

.tariff-image-card img{
width:100%;
position:relative;
z-index:2;
display:block;
}

.tariff-card h3{
font-size:32px;
font-weight:800;
color:#22030a;
margin-bottom:10px;
}

.weight{
display:block;
font-size:16px;
color:#888;
margin-bottom:24px;
}

.tariff-card h2{
font-size:52px;
font-weight:900;
color:#8b0d23;
margin-bottom:28px;
}

.tariff-card ul{
list-style:none;
display:flex;
flex-direction:column;
gap:14px;
margin-bottom:30px;
}

.tariff-card ul li{
position:relative;
padding-left:26px;
font-size:15px;
color:#555;
}

.tariff-card ul li::before{
content:"•";
position:absolute;
left:0;
top:-2px;
font-size:24px;
color:#8b0d23;
}

.tariff-card a{
height:56px;
border-radius:14px;
border:2px solid #8b0d23;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
color:#8b0d23;
transition:0.3s;
}

.tariff-card a:hover{
background:#8b0d23;
color:white;
}

.tariff-bottom{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
margin-bottom:70px;
}

.zones-table,
.calculator-box{
background:white;
padding:35px;
border-radius:30px;
}

.zones-table h3,
.calculator-box h3{
font-size:34px;
font-weight:800;
margin-bottom:30px;
color:#22030a;
}

table{
width:100%;
border-collapse:collapse;
}

table th{
background:#faf5f5;
padding:18px;
text-align:left;
font-size:15px;
}

table td{
padding:20px 18px;
border-top:1px solid #eee;
font-size:15px;
}

.table-note{
margin-top:20px;
font-size:14px;
line-height:1.6;
color:#777;
}

.calculator-box form{
display:flex;
flex-direction:column;
gap:18px;
}

.calculator-box input{
height:58px;
padding:0 18px;
border-radius:14px;
border:1px solid #ece6e6;
font-size:15px;
}

.calculator-box button{
height:58px;
border:none;
border-radius:14px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
font-weight:700;
color:white;
cursor:pointer;
}

.corporate-banner{
background:linear-gradient(135deg,#8b0d23,#5d0015);
padding:60px;
border-radius:36px;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
margin-bottom:70px;
overflow:hidden;
color:white;
}

.corporate-content h2{
font-size:54px;
line-height:1;
font-weight:900;
color:white;
margin-bottom:24px;
}

.corporate-content p{
font-size:18px;
line-height:1.8;
color:white;
max-width:560px;
margin-bottom:30px;
}

.corporate-content a{
display:inline-flex;
align-items:center;
justify-content:center;
height:58px;
padding:0 34px;
background:white;
border-radius:16px;
font-weight:700;
color:#8b0d23;
}

.corporate-image img{
width:260px;
}

.tariff-features{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.feature-item{
background:white;
padding:28px;
border-radius:24px;
display:flex;
gap:18px;
align-items:flex-start;
}

.feature-item img{
width:42px;
height:42px;
object-fit:contain;
}

.feature-item h4{
font-size:20px;
font-weight:800;
margin-bottom:10px;
color:#22030a;
}

.feature-item p{
font-size:15px;
line-height:1.7;
color:#666;
}

.calculator-result{
margin-top:25px;
padding:24px;
border-radius:20px;
background:#f8f2f2;
border:1px solid #eadede;
}

.calculator-result h4{
font-size:22px;
margin-bottom:15px;
color:#8b0d23;
}

.calculator-result p{
font-size:16px;
margin-bottom:10px;
color:#444;
}

.calculator-result strong{
color:#8b0d23;
font-weight:800;
}

/* ================= FOOTER ================= */

.footer{
background:white;
padding:80px 0 40px;
margin-top:90px;
border-top:1px solid #ececec;
}
.footer-container{
display:flex;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
align-items:flex-start;
}

.footer-container div:last-child{
margin-left:auto;
text-align:right;
}

.footer h2{
font-size:44px;
font-weight:900;
margin-bottom:20px;
color:#69071d;
}

.footer p{
line-height:1.8;
color:#666;
}

.footer-contacts{
    margin-left:auto;
    text-align:right;
}
/* ================= AUTH ================= */

.auth-page{
min-height:100vh;
background:
linear-gradient(rgba(247,245,244,0.95),
rgba(247,245,244,0.95)),
url('../images/auth-bg.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
padding:40px 20px;
}

.auth-wrapper{
width:100%;
display:flex;
justify-content:center;
align-items:center;
}

.auth-card{
width:100%;
max-width:520px;
background:white;
padding:55px;
border-radius:36px;
box-shadow:0 25px 60px rgba(0,0,0,0.08);
border:1px solid #f0ebeb;
}

.auth-logo{
display:block;
font-size:42px;
font-weight:900;
color:#69071d;
text-align:center;
margin-bottom:25px;
letter-spacing:-2px;
}

.auth-card h1{
font-size:52px;
font-weight:900;
color:#22030a;
text-align:center;
margin-bottom:12px;
}

.auth-subtitle{
font-size:17px;
color:#777;
text-align:center;
margin-bottom:40px;
line-height:1.7;
}

.auth-form{
display:flex;
flex-direction:column;
gap:24px;
}

.input-group{
position:relative;
}

.input-group input{
width:100%;
height:64px;
border:1px solid #ece6e6;
border-radius:18px;
padding:0 22px;
font-size:16px;
background:#fff;
outline:none;
transition:0.3s;
}

.input-group input:focus{
border-color:#8b0d23;
box-shadow:0 0 0 4px rgba(139,13,35,0.08);
}

.input-group label{
position:absolute;
left:22px;
top:20px;
font-size:16px;
color:#999;
pointer-events:none;
transition:0.3s;
background:white;
padding:0 6px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label{
top:-10px;
font-size:13px;
color:#8b0d23;
}

.captcha-wrapper{
display:flex;
justify-content:center;
margin-top:5px;
}

.full-btn{
width:100%;
height:62px;
font-size:17px;
cursor:pointer;
margin-top:10px;
}

.auth-links{
margin-top:28px;
display:flex;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

.auth-links a{
font-size:15px;
font-weight:700;
color:#8b0d23;
transition:0.3s;
}

.auth-links a:hover{
opacity:0.7;
}

.error-text{
background:#fff1f3;
border:1px solid #ffd5dc;
color:#a1002c;
padding:16px 18px;
border-radius:16px;
font-size:15px;
margin-bottom:24px;
line-height:1.6;
}

/* ===== BUSINESS REQUEST PAGE ===== */

.business-request-page{
padding:80px 0;
background:#f7f7f7;
min-height:calc(100vh - 200px);
}

.business-card{
max-width:1000px;
margin:0 auto;
background:#fff;
padding:50px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.business-card h1{
text-align:center;
font-size:42px;
color:#7b001c;
margin-bottom:15px;
}

.business-card p{
text-align:center;
font-size:18px;
color:#666;
margin-bottom:40px;
line-height:1.7;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

.business-card input,
.business-card textarea{
width:100%;
padding:16px 20px;
border:1px solid #ddd;
border-radius:14px;
font-size:16px;
transition:.3s;
background:#fff;
}

.business-card input:focus,
.business-card textarea:focus{
border-color:#7b001c;
outline:none;
box-shadow:0 0 0 3px rgba(123,0,28,.15);
}

.business-card textarea{
resize:vertical;
min-height:180px;
margin-bottom:25px;
}

.business-card button{
display:block;
margin:0 auto;
min-width:260px;
padding:18px;
background:#7b001c;
color:#fff;
border:none;
border-radius:14px;
font-size:17px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.business-card button:hover{
background:#950024;
transform:translateY(-2px);
box-shadow:0 12px 25px rgba(123,0,28,.25);
}

.success-message{
max-width:1200px;
margin:30px auto;
padding:18px 25px;
background:#eaf8ee;
border:1px solid #b9e4c3;
color:#1f7a39;
border-radius:16px;
font-weight:600;
text-align:center;
}

/* ===== CREATE ORDER ===== */

.page-section{
padding:80px 0;
}

.page-title{
font-size:72px;
font-weight:900;
line-height:0.95;
color:#22030a;
margin-bottom:25px;
letter-spacing:-2px;
}

.order-card{
max-width:1000px;
margin:0 auto;
background:#fff;
border-radius:36px;
padding:55px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.order-section{
margin-bottom:40px;
}

.order-section h2{
font-size:34px;
margin-bottom:25px;
color:#22030a;
}

.order-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

.order-card input,
.order-card textarea,
.order-card select{
width:100%;
padding:16px 20px;
border:1px solid #ddd;
border-radius:14px;
font-size:16px;
background:#fff;
}

.order-card textarea{
min-height:120px;
resize:none;
margin-bottom:20px;
}

.order-card input:focus,
.order-card textarea:focus,
.order-card select:focus{
outline:none;
border-color:#8b0d23;
box-shadow:0 0 0 3px rgba(139,13,35,.15);
}

.order-submit{
width:100%;
height:64px;
border:none;
border-radius:18px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
color:#fff;
font-size:20px;
font-weight:700;
cursor:pointer;
margin-top:20px;
box-shadow:0 10px 30px rgba(139,13,35,.25);
}

.order-submit:hover{
transform:translateY(-2px);
}

/* ================= CONTACTS PAGE ================= */

.contact-modern-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:25px;
margin:70px 0;
}

.contact-modern-card{
background:#fff;
padding:35px;
border-radius:30px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
transition:.3s;
}

.contact-modern-card:hover{
transform:translateY(-6px);
}

.big-contact{
background:linear-gradient(135deg,#8b0d23,#5d0015);
color:#fff;
}

.big-contact p,
.big-contact span,
.big-contact h3{
color:#fff;
}

.contact-modern-icon{
width:70px;
height:70px;
border-radius:20px;
background:#f5f0f0;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
margin-bottom:20px;
}

.big-contact .contact-modern-icon{
background:rgba(255,255,255,.15);
}

.contact-modern-card h3{
font-size:24px;
margin-bottom:12px;
}

.contact-modern-card p{
font-size:20px;
font-weight:700;
margin-bottom:10px;
}

.contact-modern-card span{
color:#777;
line-height:1.6;
}

.support-section{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:40px;
margin:80px 0;
}

.support-left{
background:#fff;
padding:45px;
border-radius:30px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.support-left h2{
font-size:48px;
margin-bottom:20px;
color:#22030a;
}

.support-left p{
font-size:18px;
color:#666;
line-height:1.8;
margin-bottom:25px;
}

.support-left ul{
list-style:none;
margin-bottom:35px;
}

.support-left ul li{
padding:12px 0;
font-size:17px;
}

.support-right{
display:flex;
flex-direction:column;
gap:25px;
}

.support-box{
background:#fff;
padding:35px;
border-radius:30px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.support-box h3{
font-size:28px;
margin-bottom:15px;
}

.support-box p{
color:#666;
line-height:1.8;
}

.dark-box{
background:linear-gradient(135deg,#8b0d23,#5d0015);
}

.dark-box h3,
.dark-box p{
color:#fff;
}

.cta-banner{
margin-top:80px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
border-radius:40px;
padding:60px;
display:flex;
justify-content:space-between;
align-items:center;
color:#fff;
overflow:hidden;
}

.cta-content h2{
font-size:56px;
margin-bottom:20px;
}

.cta-content p{
font-size:20px;
line-height:1.8;
margin-bottom:30px;
}

.cta-buttons{
display:flex;
gap:20px;
}

.white-outline{
border:2px solid #fff;
color:#fff;
background:transparent;
}

.white-outline:hover{
background:#fff;
color:#8b0d23;
}

.cta-image{
font-size:120px;
}

.alarm-icon,
.home-icon{
width:30px;
height:30px;
object-fit:contain;
}

.thought-icon{
width:140px;
height:140px;
object-fit:contain;
}

.page-description{
max-width:650px;
margin-top:30px;
padding:30px 35px;
background:#ffffff;
border-radius:24px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
font-size:20px;
line-height:1.9;
font-weight:400;
color:#555;
border-left:5px solid #8b0d23;
}

.page-hero-left{
font-family:'Manrope',sans-serif;
}

.page-hero{
display:grid;
grid-template-columns:1fr 1fr;
gap:100px;
align-items:center;
}

.services-btn{
height:58px;
padding:0 34px;
border:2px solid rgba(255,255,255,.8);
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-weight:700;
transition:.3s;
}

.services-btn:hover{
background:#fff;
color:#8b0d23;
transform:translateY(-2px);
}

/* ===== CONTACT FORM PAGE ===== */

.contact-form-page{
padding:80px 0;
background:#f7f5f4;
}

.contact-form-card{
max-width:800px;
margin:0 auto;
background:#fff;
padding:50px;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-form-card h1{
text-align:center;
font-size:42px;
color:#7b001c;
margin-bottom:15px;
}

.contact-form-card p{
text-align:center;
color:#666;
margin-bottom:35px;
line-height:1.7;
}

.contact-form-card form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form-card .form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.contact-form-card input,
.contact-form-card textarea{
width:100%;
padding:16px 20px;
border:1px solid #ddd;
border-radius:14px;
font-size:16px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus{
outline:none;
border-color:#7b001c;
box-shadow:0 0 0 3px rgba(123,0,28,.15);
}

.contact-form-card textarea{
resize:vertical;
min-height:180px;
}

.contact-form-card button{
width:100%;
}

/* ================= DASHBOARD ================= */

.dashboard-page{
padding:80px 0;
}

.dashboard-hero{
display:grid;
grid-template-columns:1fr 280px;
gap:50px;
align-items:start;
margin-bottom:60px;
}

.dashboard-left h1{
font-size:68px;
font-weight:900;
color:#22030a;
margin:20px 0;
line-height:1;
}

.dashboard-left p{
font-size:20px;
line-height:1.8;
color:#666;
max-width:700px;
}

.dashboard-right{
display:flex;
justify-content:center;
}

.dashboard-avatar{
width:220px;
height:220px;
border-radius:50%;
background:linear-gradient(135deg,#8b0d23,#5d0015);
display:flex;
align-items:center;
justify-content:center;
font-size:90px;
font-weight:900;
color:#fff;
box-shadow:0 25px 60px rgba(91,0,21,.25);
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:50px;
}

.dashboard-card{
position:relative;
overflow:hidden;
}

.dashboard-card:hover{
transform:translateY(-6px) scale(1.02);
}

.dashboard-card::after{
content:"";
position:absolute;
top:-50%;
right:-50%;
width:200px;
height:200px;
background:radial-gradient(circle, rgba(139,13,35,.08), transparent 70%);
transform:rotate(25deg);
}

.dashboard-icon{
font-size:48px;
margin-bottom:20px;
}

.dashboard-card h3{
font-size:28px;
font-weight:800;
color:#22030a;
margin-bottom:12px;
}

.dashboard-card p{
font-size:16px;
line-height:1.7;
color:#666;
}

.dashboard-info{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.info-card{
background:#fff;
padding:30px;
border-radius:25px;
border:1px solid #ece6e6;
}

.info-card h4{
font-size:15px;
color:#999;
margin-bottom:12px;
text-transform:uppercase;
letter-spacing:1px;
}

.info-card p{
font-size:22px;
font-weight:700;
color:#22030a;
}

.box-icon{
width:50px;
height:50px;
object-fit:contain;
}

.profile-edit-btn{
display:flex;
justify-content:center;
margin-top:50px;
}

.profile-edit-btn .main-btn{
min-width:280px;
}

.hand-icon{
width:80px;
height:80px;
object-fit:contain;
}

/* ================= ADMIN PANEL ================= */

.dashboard-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:50px;
}

.dashboard-label{
display:inline-block;
padding:10px 18px;
background:#f4e6e9;
border-radius:999px;
font-size:14px;
font-weight:800;
letter-spacing:1px;
text-transform:uppercase;
color:#8b0d23;
margin-bottom:20px;
}

.crm-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(500px,1fr));
gap:30px;
}

.crm-card{
background:#fff;
border-radius:30px;
padding:35px;
border:1px solid #ece6e6;
box-shadow:0 15px 40px rgba(0,0,0,.05);
transition:.3s;
}

.crm-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.crm-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
padding-bottom:20px;
border-bottom:1px solid #eee;
}

.crm-top h2{
font-size:30px;
font-weight:900;
color:#22030a;
margin-bottom:10px;
}

.crm-status{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 18px;
border-radius:999px;
background:#f4e6e9;
color:#8b0d23;
font-weight:700;
font-size:14px;
}

.crm-info{
display:flex;
flex-direction:column;
gap:12px;
margin-bottom:30px;
}

.crm-info p{
font-size:15px;
line-height:1.7;
color:#444;
}

.crm-info b{
color:#22030a;
}

.crm-form{
display:flex;
flex-direction:column;
gap:16px;
}

.crm-form select,
.crm-form input,
.crm-form textarea{
width:100%;
padding:16px 18px;
border:1px solid #ddd;
border-radius:14px;
font-size:15px;
background:#fff;
transition:.3s;
font-family:'Inter',sans-serif;
}

.crm-form textarea{
min-height:120px;
resize:vertical;
}

.crm-form select:focus,
.crm-form input:focus,
.crm-form textarea:focus{
outline:none;
border-color:#8b0d23;
box-shadow:0 0 0 3px rgba(139,13,35,.12);
}

.delete-btn{
width:100%;
height:58px;
border:none;
border-radius:16px;
background:#ef4444;
color:#fff;
font-size:15px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.delete-btn:hover{
background:#dc2626;
transform:translateY(-2px);
}

.crm-form .main-btn{
width:100%;
}

/* ================= MOBILE ADAPTATION FIX ================= */

/* Tablet */
@media (max-width: 1100px){

    .contact-modern-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .cta-banner{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }
}

/* Small laptop / landscape tablets */
@media (max-width: 992px){

    .header-container{
        flex-wrap:wrap;
        gap:20px;
    }

    .nav-menu{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:18px;
    }

    .dashboard-hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .dashboard-grid,
    .dashboard-info{
        grid-template-columns:repeat(2, 1fr);
    }

    .support-section{
        grid-template-columns:1fr;
    }

    .crm-grid{
        grid-template-columns:1fr;
    }
}

/* ================= MOBILE (MAIN FIX) ================= */
@media (max-width: 768px){

    .container{
        width:92%;
    }

    /* HEADER */
    .header-container{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .logo{
        font-size:32px;
    }

    .nav-menu{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .nav-menu a{
        font-size:14px;
        padding:6px 10px;
    }

    .header-buttons{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:10px;
    }

    .login-btn,
    .main-btn,
    .profile-btn{
        width:100%;
        max-width:280px;
        height:48px;
        font-size:14px;
    }

    /* HERO / SECTIONS */
    .home-hero,
    .services-modern-page,
    .tariffs-page,
    .page-section,
    .business-request-page,
    .contact-form-page,
    .dashboard-page{
        padding:50px 0;
    }

    .home-hero-wrapper,
    .services-hero,
    .tariffs-hero,
    .page-hero,
    .dashboard-hero,
    .support-section,
    .tariff-bottom{
        grid-template-columns:1fr !important;
        gap:30px;
    }

    /* TYPOGRAPHY */
    .home-hero-content h1,
    .services-hero-left h1,
    .tariffs-left h1,
    .page-title,
    .dashboard-left h1,
    .business-card h1,
    .contact-form-card h1,
    .support-left h2{
        font-size:34px !important;
        line-height:1.2;
    }

    .home-hero-content p,
    .services-hero-left p,
    .tariffs-left p,
    .dashboard-left p{
        font-size:16px;
        line-height:1.6;
    }

    /* GRIDS → 2 COLUMNS */
    .services-modern-grid,
    .tariff-cards,
    .tariff-features,
    .dashboard-grid,
    .dashboard-info,
    .contact-modern-grid{
        grid-template-columns:repeat(2, 1fr) !important;
        gap:12px;
    }

    /* CARDS */
    .service-modern-card,
    .tariff-card,
    .dashboard-card,
    .contact-modern-card{
        padding:18px;
        border-radius:18px;
    }

    .tariff-card h2{
        font-size:30px;
    }

    .service-modern-card h3,
    .tariff-card h3{
        font-size:20px;
    }

    /* FORMS */
    .order-card,
    .business-card,
    .contact-form-card,
    .support-left,
    .crm-card{
        padding:25px;
    }

    .order-grid,
    .form-grid,
    .contact-form-card .form-grid{
        grid-template-columns:1fr;
    }

    input,
    textarea,
    select{
        font-size:14px;
    }

    /* CTA / BANNERS */
    .cta-banner,
    .corporate-banner{
        flex-direction:column;
        text-align:center;
        padding:35px 20px;
    }

    .cta-content h2,
    .corporate-content h2{
        font-size:30px;
    }

    .cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .cta-buttons a{
        width:100%;
    }

    /* FOOTER */
    .footer{
        text-align:center;
        padding:50px 0 30px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    /* TABLES */
    table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }

    /* AUTH */
    .auth-card{
        padding:30px 20px;
    }

    .auth-card h1{
        font-size:36px;
    }

    .auth-logo{
        font-size:32px;
    }
}

/* ================= VERY SMALL PHONES ================= */
@media (max-width: 480px){

    .logo{
        font-size:28px;
    }

    .nav-menu a{
        font-size:13px;
    }

    .home-hero-content h1,
    .services-hero-left h1,
    .tariffs-left h1,
    .page-title,
    .dashboard-left h1{
        font-size:28px !important;
    }

    .cta-content h2,
    .corporate-content h2{
        font-size:26px;
    }

    .services-modern-grid,
    .tariff-cards,
    .tariff-features,
    .dashboard-grid,
    .dashboard-info,
    .contact-modern-grid{
        grid-template-columns:1fr !important;
    }

    .tariff-card h2{
        font-size:26px;
    }

    .container{
        width:94%;
    }
}

@media(max-width:768px){

    .header{
        padding:14px 0;
    }

    .header-container{
        flex-direction:column;
        gap:15px;
    }

    .logo{
        font-size:30px;
    }

    .nav-menu{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:8px;
    }

    .nav-menu a{
        padding:10px 14px;
        font-size:14px;
        border-radius:12px;
        background:#fff;
    }

    .header-buttons{
        width:100%;
        justify-content:center;
    }

    .login-btn,
    .main-btn{
        height:46px;
        padding:0 18px;
        font-size:14px;
    }
}

.logo{
    font-size:38px;
    font-weight:900;
    background:linear-gradient(135deg,#b1002b,#5d0015);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    letter-spacing:-1px;
}

.login-btn,
.main-btn{
    height:50px;
    padding:0 24px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    line-height:1;

    border-radius:14px;
    font-weight:700;

    white-space:nowrap;
}

/* ================= BUSINESS REQUESTS CRM ================= */

.business-crm-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
}

.business-crm-title{
font-size:42px;
font-weight:900;
color:#22030a;
line-height:1;
}

.business-crm-subtitle{
font-size:16px;
color:#777;
margin-top:10px;
}

.business-status{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 18px;
border-radius:999px;
background:#f4e6e9;
color:#8b0d23;
font-weight:700;
font-size:14px;
margin-top:10px;
}

.business-info{
display:flex;
flex-direction:column;
gap:12px;
margin-bottom:25px;
}

.business-info p{
font-size:15px;
line-height:1.7;
color:#444;
}

.business-info b{
color:#22030a;
}

.business-actions{
display:flex;
flex-direction:column;
gap:12px;
}

.business-btn{
height:56px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:15px;
transition:.3s;
cursor:pointer;
border:none;
text-decoration:none;
}

.business-btn-primary{
background:linear-gradient(135deg,#8b0d23,#5d0015);
color:#fff;
box-shadow:0 10px 25px rgba(139,13,35,.25);
}

.business-btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 15px 30px rgba(139,13,35,.35);
}

.business-btn-mail{
background:#f5f5f5;
color:#222;
border:1px solid #eee;
}

.business-btn-mail:hover{
background:#ececec;
}

.business-message{
background:#faf7f7;
padding:15px;
border-radius:14px;
font-size:14px;
color:#555;
line-height:1.6;
border-left:4px solid #8b0d23;
margin-top:10px;
}

.business-card select{
width:100% !important;
height:58px;
padding:0 20px !important;
border:1px solid #ddd;
border-radius:14px;
font-size:16px;
background:#fff;
color:#333;

appearance:none;
-webkit-appearance:none;
-moz-appearance:none;

cursor:pointer;

/* стрілка */
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%238b0d23' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
background-repeat:no-repeat;
background-position:right 18px center;
background-size:14px;
}

.business-card select:focus{
border-color:#8b0d23;
outline:none;
box-shadow:0 0 0 3px rgba(139,13,35,.15);
}

.business-crm-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:40px;
}

.business-crm-title{
    font-size:44px;
    font-weight:900;
    color:#22030a;
}

.business-crm-subtitle{
    font-size:16px;
    color:#777;
    margin-top:8px;
}

.crm-header-box{
    display:flex;
    align-items:center;
    justify-content:space-between;

    background:linear-gradient(135deg,#8b0d23,#5d0015);
    color:#fff;

    padding:25px 30px;
    border-radius:24px;

    box-shadow:0 20px 50px rgba(139,13,35,.25);

    margin-bottom:40px;
    position:relative;
    overflow:hidden;
}

/* декоративне світло */
.crm-header-box::before{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.crm-header-icon{
    font-size:42px;
    background:rgba(255,255,255,.15);
    width:70px;
    height:70px;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.crm-header-content{
    flex:1;
    padding:0 20px;
}

.crm-header-title{
    font-size:32px;
    font-weight:900;
    line-height:1.1;
}

.crm-header-subtitle{
    font-size:15px;
    opacity:.85;
    margin-top:6px;
}

.crm-header-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 20px;
    border-radius:14px;

    background:#fff;
    color:#8b0d23;

    font-weight:800;
    text-decoration:none;

    transition:.3s;
    white-space:nowrap;
}

.crm-header-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ================= CRM DASHBOARD SECTIONS ================= */

.crm-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* одна велика плитка */
.crm-section-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    border: 1px solid #ece6e6;
    transition: .3s;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.crm-section-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,.10);
}

/* декоративний фон */
.crm-section-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139,13,35,.08), transparent 70%);
    top: -60px;
    right: -60px;
}

/* іконка */
.crm-section-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #8b0d23;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 18px;
}

/* заголовок */
.crm-section-title {
    font-size: 28px;
    font-weight: 900;
    color: #22030a;
    margin-bottom: 8px;
}

/* підзаголовок */
.crm-section-subtitle {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

/* бейдж */
.crm-section-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f4e6e9;
    color: #8b0d23;
    font-size: 13px;
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
    .crm-sections {
        grid-template-columns: 1fr;
    }
}
/* ================= CRM PAGE HEADER ================= */

.crm-page-header {
    background: linear-gradient(135deg, #8b0d23, #5d0015);
    padding: 45px 40px;
    border-radius: 28px;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(91, 0, 21, 0.25);
}

/* декоративне світло */
.crm-page-header::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.crm-page-header h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.crm-page-header p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* маленький “brand line” */
.crm-page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 120px;
    height: 4px;
    background: #fff;
    border-radius: 10px;
    opacity: 0.6;
}

/* ================= CRM HEADER ================= */

.crm-page-header{
    background: linear-gradient(135deg,#8b0d23,#5d0015);
    color:#fff;
    padding:45px 40px;
    border-radius:30px;
    margin-bottom:40px;
    position:relative;
    overflow:hidden;
}

.crm-page-header::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.crm-page-header h1{
    font-size:42px;
    font-weight:900;
    margin-bottom:10px;
    letter-spacing:-1px;
}

.crm-page-header p{
    font-size:16px;
    opacity:.9;
}

/* ================= SECTIONS ================= */

.crm-section{
    margin-bottom:60px;
}

.crm-section-title{
    font-size:28px;
    font-weight:900;
    color:#22030a;
    margin:20px 0 25px;
}

/* ================= GRID ================= */

.crm-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(420px,1fr));
    gap:25px;
}

/* ================= CARD ================= */

.crm-card{
    background:#fff;
    border-radius:26px;
    padding:28px;
    border:1px solid #eee;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.crm-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* ================= TOP ================= */

.crm-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:18px;
    padding-bottom:15px;
    border-bottom:1px solid #f1f1f1;
}

.crm-top h2{
    font-size:22px;
    font-weight:900;
    color:#22030a;
}

/* STATUS BADGE */

.crm-status{
    display:inline-flex;
    padding:8px 14px;
    border-radius:999px;
    background:#f4e6e9;
    color:#8b0d23;
    font-size:12px;
    font-weight:800;
    margin-top:8px;
}

/* ================= INFO ================= */

.crm-info{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:18px;
}

.crm-info p{
    font-size:14px;
    color:#444;
    line-height:1.6;
}

.crm-info b{
    color:#22030a;
}

/* ================= MESSAGE ================= */

.business-message{
    background:#faf7f7;
    border-left:4px solid #8b0d23;
    padding:14px;
    border-radius:14px;
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin-bottom:18px;
}

/* ================= ACTIONS ================= */

.business-actions{
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* BUTTONS */

.business-btn{
    height:50px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:14px;
    cursor:pointer;
    text-decoration:none;
    border:none;
    transition:.3s;
}

/* MAIL BUTTON */

.business-btn-mail{
    background:#f5f5f5;
    color:#222;
    border:1px solid #eee;
}

.business-btn-mail:hover{
    background:#ececec;
}

/* PRIMARY BUTTON */

.business-btn-primary{
    background:linear-gradient(135deg,#8b0d23,#5d0015);
    color:#fff;
    box-shadow:0 10px 25px rgba(139,13,35,.25);
}

.business-btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(139,13,35,.35);
}

/* ================= FORM INSIDE CRM ================= */

.crm-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.crm-form input,
.crm-form textarea,
.crm-form select{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:14px;
    outline:none;
    transition:.3s;
}

.crm-form input:focus,
.crm-form textarea:focus,
.crm-form select:focus{
    border-color:#8b0d23;
    box-shadow:0 0 0 3px rgba(139,13,35,.12);
}

/* ================= DELETE BUTTON ================= */

.delete-btn{
    height:50px;
    border-radius:14px;
    background:#ef4444;
    color:#fff;
    font-weight:800;
    border:none;
    cursor:pointer;
    transition:.3s;
}

.delete-btn:hover{
    background:#dc2626;
    transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .crm-page-header{
        padding:30px 20px;
        text-align:center;
    }

    .crm-page-header h1{
        font-size:28px;
    }

    .crm-grid{
        grid-template-columns:1fr;
    }

    .crm-card{
        padding:20px;
    }

    .crm-top h2{
        font-size:18px;
    }
}

.crm-page-header h1{
    color:#fff;
    font-size:42px;
    font-weight:900;
}

.crm-page-header p{
    color:rgba(255,255,255,.85);
    font-size:16px;
}

.delete-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:16px;

    background:linear-gradient(135deg,#b23a48,#8b0d23);
    color:#fff;

    font-size:15px;
    font-weight:700;

    cursor:pointer;
    transition:.3s;

    box-shadow:0 10px 20px rgba(139,13,35,.15);
}

.delete-btn:hover{
    background:linear-gradient(135deg,#a53240,#7a0b1f);
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(139,13,35,.25);
}

.delete-btn:active{
    transform:translateY(0);
}

/* PROFILE UPLOAD */

.profile-upload-wrapper{
margin-top:25px;
}

.upload-label{
display:block;
font-weight:700;
margin-bottom:15px;
color:#4d0817;
}

.profile-upload{
display:flex;
align-items:center;
gap:15px;
flex-wrap:wrap;
}

.profile-upload input[type="file"]{
display:none;
}

.upload-btn{
background:linear-gradient(135deg,#7b1025,#4d0817);
color:white;
padding:14px 26px;
border-radius:18px;
font-weight:700;
cursor:pointer;
transition:.3s;
box-shadow:0 10px 30px rgba(123,16,37,.2);
}

.upload-btn:hover{
transform:translateY(-2px);
box-shadow:0 15px 40px rgba(123,16,37,.3);
}

#file-name{
font-size:14px;
color:#666;
font-weight:500;
}

.profile-avatar-preview{
margin-top:30px;
}

.profile-avatar-preview img{
width:150px;
height:150px;
border-radius:50%;
object-fit:cover;
border:5px solid white;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}