/* ==========================================================
   TechESteel Request Demo
   ========================================================== */

.techesteel-request-demo-page{
    background:#f4f9fd;
    color:#10283d;
}

.demo-hero{
    padding:110px 0 95px;
    border-bottom:1px solid #d4e4f1;
    background:
        radial-gradient(circle at 78% 20%,rgba(47,139,230,.18),transparent 34%),
        linear-gradient(110deg,#f9fcff 0%,#edf7ff 58%,#deefff 100%);
}

.demo-hero .container{
    max-width:1220px;
}

.demo-tag{
    display:inline-flex;
    margin-bottom:22px;
    color:#1f78d1;
    font-size:13px;
    font-weight:700;
    letter-spacing:.22em;
}

.demo-hero h1{
    max-width:850px;
    margin:0;
    color:#10283d;
    font-size:clamp(48px,6vw,80px);
    line-height:1.02;
    letter-spacing:-.05em;
}

.demo-hero p{
    max-width:780px;
    margin:26px 0 0;
    color:#60758a;
    font-size:20px;
    line-height:1.75;
}

.demo-stats{
    margin-top:-34px;
    position:relative;
    z-index:2;
}

.demo-stats .container,
.demo-main-section .container{
    max-width:1220px;
}

.demo-stats .stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    overflow:hidden;
    border:1px solid #d4e4f1;
    border-radius:18px;
    background:#fff;
    box-shadow:0 18px 45px rgba(25,88,145,.10);
}

.demo-stats .stat{
    padding:28px 30px;
    text-align:center;
    border-right:1px solid #e1edf6;
}

.demo-stats .stat:last-child{
    border-right:0;
}

.demo-stats .stat h2{
    margin:0;
    color:#1675d1;
    font-size:36px;
    line-height:1;
}

.demo-stats .stat p{
    margin:10px 0 0;
    color:#60758a;
    font-size:14px;
    font-weight:600;
}

.demo-main-section{
    padding:85px 0 110px;
}

.demo-layout{
    display:grid;
    grid-template-columns:minmax(0,1.6fr) minmax(310px,.75fr);
    gap:32px;
    align-items:start;
}

.demo-form-card,
.demo-card{
    border:1px solid #d4e4f1;
    border-radius:22px;
    background:#fff;
    box-shadow:0 18px 50px rgba(25,88,145,.09);
}

.demo-form-card{
    padding:38px;
}

.demo-form-card h2,
.demo-card h3{
    color:#10283d;
}

.demo-form-card h2{
    margin:0 0 26px;
    font-size:32px;
    letter-spacing:-.03em;
}

.demo-form{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.demo-form input:not([type="hidden"]),
.demo-form select,
.demo-form textarea{
    width:100%;
    min-height:54px;
    padding:0 16px;
    border:1px solid #cddfec;
    border-radius:10px;
    outline:0;
    background:#fff;
    color:#10283d;
    font:inherit;
    transition:border-color .2s ease,box-shadow .2s ease;
}

.demo-form textarea{
    grid-column:1/-1;
    min-height:145px;
    padding-top:15px;
    resize:vertical;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus{
    border-color:#2f8be6;
    box-shadow:0 0 0 4px rgba(47,139,230,.11);
}

.demo-btn{
    grid-column:1/-1;
    min-height:56px;
    padding:0 26px;
    border:0;
    border-radius:10px;
    background:linear-gradient(135deg,#459ff1,#1670d3);
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 14px 32px rgba(28,119,216,.24);
}

.demo-btn:hover{
    transform:translateY(-1px);
}

.demo-btn:disabled{
    opacity:.65;
    cursor:not-allowed;
    transform:none;
}

.demo-form-message{
    margin:0 0 24px;
    padding:16px 18px;
    border-radius:10px;
    font-size:15px;
    line-height:1.55;
}

.demo-form-message strong{
    display:block;
    margin-bottom:2px;
}

.demo-form-success{
    border:1px solid #a6f4c5;
    background:#ecfdf3;
    color:#067647;
}

.demo-form-error{
    border:1px solid #fecaca;
    background:#fff1f0;
    color:#b42318;
}

.demo-honeypot{
    position:absolute!important;
    left:-9999px!important;
    width:1px!important;
    height:1px!important;
    overflow:hidden!important;
}

.demo-card{
    padding:30px;
    position:sticky;
    top:110px;
}

.demo-card h3{
    margin:0 0 18px;
    font-size:22px;
}

.demo-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.demo-card li{
    position:relative;
    margin:0;
    padding:10px 0 10px 28px;
    color:#516b82;
    line-height:1.5;
}

.demo-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:10px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#eaf4ff;
    color:#1976d2;
    text-align:center;
    line-height:20px;
    font-size:12px;
    font-weight:700;
}

.demo-card hr{
    margin:24px 0;
    border:0;
    border-top:1px solid #e1edf6;
}

.demo-card p{
    margin:10px 0;
    color:#60758a;
    line-height:1.6;
}

.demo-card a{
    color:#1976d2;
    text-decoration:none;
}

@media(max-width:900px){
    .demo-hero{padding:90px 0 80px}
    .demo-stats{margin-top:-26px}
    .demo-layout{grid-template-columns:1fr}
    .demo-card{position:static}
}

@media(max-width:700px){
    .demo-hero{padding:75px 0 65px}
    .demo-hero p{font-size:17px}
    .demo-stats .stats-grid{grid-template-columns:1fr}
    .demo-stats .stat{border-right:0;border-bottom:1px solid #e1edf6}
    .demo-stats .stat:last-child{border-bottom:0}
    .demo-main-section{padding:65px 0 80px}
    .demo-form-card{padding:26px 20px;border-radius:17px}
    .demo-form{grid-template-columns:1fr}
    .demo-form textarea,.demo-btn{grid-column:auto}
}
