/* MetalinkPro — calculator for auto canopies */
.canopy-layout{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(330px,.85fr);
    gap:28px;
    align-items:start;
}
.canopy-form{display:grid;gap:20px}
.canopy-card,
.canopy-result__sticky{
    border:1px solid rgba(255,255,255,.13);
    background:rgba(15,23,42,.72);
    backdrop-filter:blur(18px);
    border-radius:24px;
    padding:24px;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
}
.canopy-card h3,
.canopy-result h3{margin-top:0;color:#fff}
.canopy-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}
.canopy-checks{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-top:18px;
}
.canopy-checks label{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:46px;
    padding:12px 14px;
    border-radius:14px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    color:#e5e7eb;
    cursor:pointer;
}
.canopy-checks input{width:auto}
.canopy-result{min-width:0}
.canopy-result__sticky{
    position:sticky;
    top:90px;
}
.canopy-visual{
    margin:20px 0;
    height:230px;
    border-radius:22px;
    background:
        radial-gradient(circle at 40% 20%, rgba(251,191,36,.18), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.canopy-model{
    width:76%;
    max-width:380px;
    height:150px;
    position:relative;
    transform:perspective(700px) rotateY(-14deg);
}
.canopy-model__roof{
    position:absolute;
    left:0;
    top:10px;
    width:100%;
    height:58px;
    border-radius:120px 120px 18px 18px;
    background:linear-gradient(135deg, rgba(251,191,36,.95), rgba(180,83,9,.92));
    border:2px solid rgba(253,230,138,.65);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}
.canopy-model--single .canopy-model__roof{
    border-radius:18px;
    transform:skewY(-5deg);
}
.canopy-model--double .canopy-model__roof{
    border-radius:10px;
    clip-path:polygon(50% 0,100% 70%,100% 100%,0 100%,0 70%);
}
.canopy-model__posts{
    position:absolute;
    left:6%;
    right:6%;
    bottom:0;
    height:92px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}
.canopy-model__posts span{
    display:block;
    width:8px;
    height:92px;
    border-radius:6px;
    background:linear-gradient(180deg,#e5e7eb,#64748b);
    box-shadow:0 0 0 1px rgba(255,255,255,.2);
}
.canopy-hero .seo-hero__overlay{
    background:
        radial-gradient(circle at 18% 18%, rgba(251,191,36,.28), transparent 34%),
        linear-gradient(90deg, rgba(2,6,23,.96), rgba(2,6,23,.76), rgba(2,6,23,.34));
}
@media(max-width:980px){
    .canopy-layout{grid-template-columns:1fr}
    .canopy-result__sticky{position:static}
}
@media(max-width:680px){
    .canopy-grid,
    .canopy-checks{grid-template-columns:1fr}
    .canopy-card,
    .canopy-result__sticky{padding:18px}
    .canopy-model{width:90%}
}
