/* ==========================================
   REQUEST DEMO PAGE
========================================== */

.request-demo-page{
    background:#f7fbff;
}

/* ==========================================
   HERO
========================================== */

.demo-hero{
    padding:80px 0 70px;
    background:linear-gradient(180deg,#f8fcff 0%,#eef7ff 100%);
    position:relative;
    overflow:hidden;
}

.demo-hero:before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(47,139,230,.06) 1px,transparent 1px),
        linear-gradient(90deg,rgba(47,139,230,.06) 1px,transparent 1px);
    background-size:60px 60px;
}

.demo-hero .container{
    position:relative;
    z-index:2;
}

.demo-tag{
    display:inline-block;
    color:#2f8be6;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.demo-hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    color:#0f2945;
    margin-bottom:25px;
}

.demo-hero p{
    max-width:760px;
    font-size:22px;
    line-height:1.7;
    color:#5d7288;
}

/* ==========================================
   CONTENT
========================================== */

.demo-section{
    padding:80px 0;
}

.demo-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
}

/* ==========================================
   FORM
========================================== */

.demo-form-box{

    background:#fff;

    border-radius:24px;

    padding:45px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.demo-form-box h2{

    font-size:42px;

    margin-bottom:35px;

    color:#132d49;

}

.demo-form{

    display:grid;

    gap:22px;

}

.demo-form input,

.demo-form select,

.demo-form textarea{

    width:100%;

    padding:16px 20px;

    border:1px solid #d8e6f5;

    border-radius:14px;

    font-size:16px;

    transition:.3s;

    background:#fff;

}

.demo-form textarea{

    min-height:150px;

    resize:vertical;

}

.demo-form input:focus,

.demo-form select:focus,

.demo-form textarea:focus{

    outline:none;

    border-color:#2f8be6;

    box-shadow:0 0 0 4px rgba(47,139,230,.15);

}

/* Two Columns */

.demo-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

/* ==========================================
   BUTTON
========================================== */

.demo-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#4aa3ff,#1b73d8);

    color:#fff;

    padding:18px 40px;

    border:none;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    width:max-content;

}

.demo-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(47,139,230,.30);

}

/* ==========================================
   SIDEBAR
========================================== */

.demo-sidebar{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.demo-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.demo-card h3{

    font-size:28px;

    margin-bottom:25px;

    color:#122d49;

}

.demo-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.demo-card ul li{

    margin-bottom:18px;

    font-size:17px;

    color:#53697d;

    position:relative;

    padding-left:28px;

}

.demo-card ul li:before{

    content:"✔";

    position:absolute;

    left:0;

    color:#2f8be6;

    font-weight:bold;

}

.demo-contact{

    line-height:2;

    color:#5a6d7f;

}

.demo-contact strong{

    color:#1b2e42;

}

/* ==========================================
   STATS
========================================== */

.demo-stats{

    padding:70px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.stat-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    display:flex;

    align-items:center;

    gap:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-6px);

}

.stat-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef6ff;

}

.stat-icon img{

    width:38px;

}

.stat-card h2{

    font-size:42px;

    color:#122d49;

    margin:0;

}

.stat-card p{

    margin-top:6px;

    color:#6d7f91;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

.demo-wrapper{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;

}

.demo-hero h1{

font-size:42px;

}

.demo-row{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.demo-hero{

padding:60px 0;

}

.demo-form-box{

padding:30px;

}

.demo-form-box h2{

font-size:32px;

}

.demo-hero h1{

font-size:34px;

}

.demo-hero p{

font-size:18px;

}

.demo-btn{

width:100%;

}

}