/* ==========================================================
   Cete Bauservice - Angebot anfragen
   Ablage: data/angebot.css
   ========================================================== */

.offer-hero{
    position:relative;
    overflow:hidden;
    display:flex;
    min-height:430px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:5.5rem 3rem;
    border-radius:24px;
    background:linear-gradient(135deg,var(--dark),var(--dark2));
    color:#fff;
    text-align:center;
    box-shadow:0 18px 45px rgba(31,41,55,.16);
}

.offer-hero::before{
    content:"";
    position:absolute;
    top:-145px;
    right:-105px;
    width:350px;
    height:350px;
    border:54px solid rgba(255,255,255,.035);
    border-radius:50%;
}

.offer-hero::after{
    content:"";
    position:absolute;
    bottom:-175px;
    left:-105px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(183,28,28,.18);
}

.offer-hero > *{
    position:relative;
    z-index:1;
}

.offer-hero .section-label{
    color:var(--accent);
}

.offer-hero h1{
    max-width:920px;
    margin:0 auto 1.25rem;
    font-size:clamp(2.3rem,4.5vw,3.8rem);
    letter-spacing:-.025em;
}

.offer-hero > p{
    max-width:850px;
    margin:0 auto;
    color:rgba(255,255,255,.84);
    font-size:1.08rem;
}

.offer-hero-points{
    display:flex;
    justify-content:center;
    gap:1rem 1.8rem;
    flex-wrap:wrap;
    margin-top:2rem;
}

.offer-hero-points span{
    display:inline-flex;
    align-items:center;
    gap:.55rem;
    color:#fff;
    font-weight:700;
    font-size:.92rem;
}

.offer-hero-points i{
    display:inline-flex;
    width:24px;
    height:24px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    font-size:.72rem;
}

.offer-layout{
    display:grid;
    grid-template-columns:minmax(0,1.55fr) minmax(300px,.58fr);
    gap:2rem;
    align-items:start;
    margin:5rem 0;
}

.offer-form-card{
    min-width:0;
    padding:3rem;
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    box-shadow:0 18px 45px rgba(31,41,55,.09);
}

.offer-form-heading{
    max-width:760px;
}

.offer-form-heading h2{
    margin-bottom:.8rem;
    color:var(--dark);
    font-size:2.25rem;
}

.offer-form-heading p{
    margin:0;
    color:var(--muted);
}

.offer-progress{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    margin:2.5rem 0 3rem;
    padding:0;
    list-style:none;
}

.offer-progress li{
    position:relative;
    display:flex;
    min-width:0;
    flex-direction:column;
    align-items:center;
    gap:.55rem;
    color:#9ca3af;
    text-align:center;
}

.offer-progress li:not(:last-child)::after{
    content:"";
    position:absolute;
    top:20px;
    left:calc(50% + 28px);
    width:calc(100% - 56px);
    height:3px;
    border-radius:50px;
    background:#e5e7eb;
    transition:.3s ease;
}

.offer-progress li > span{
    position:relative;
    z-index:1;
    display:flex;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    border:2px solid #d1d5db;
    border-radius:50%;
    background:#fff;
    color:#6b7280;
    font-weight:800;
    transition:.3s ease;
}

.offer-progress li strong{
    font-size:.84rem;
    line-height:1.25;
}

.offer-progress li.is-active,
.offer-progress li.is-complete{
    color:var(--dark);
}

.offer-progress li.is-active > span,
.offer-progress li.is-complete > span{
    border-color:var(--primary);
    background:var(--primary);
    color:#fff;
    box-shadow:0 7px 18px rgba(183,28,28,.2);
}

.offer-progress li.is-complete:not(:last-child)::after{
    background:var(--primary);
}

.offer-status{
    position:relative;
    margin:0 0 2.5rem;
    padding:1.25rem 1.4rem 1.25rem 4.3rem;
    border:1px solid transparent;
    border-radius:14px;
    line-height:1.5;
}

/* Erfolgreich gesendet */
.offer-status.is-success{
    border:1px solid #bbf7d0;
    border-left:5px solid #16a34a;
    background:#f0fdf4;
    box-shadow:0 8px 22px rgba(31,41,55,.06);
}

.offer-status.is-success::before{
    content:"\2713";
    position:absolute;
    left:1.25rem;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    width:34px;
    height:34px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    font-size:1.05rem;
    font-weight:900;
}

.offer-status strong{
    display:block;
    margin:0 0 .45rem;
    color:#14532d;
    font-size:1rem;
    font-weight:800;
}

.offer-status span{
    display:block;
    color:#4b5563;
    font-size:.92rem;
    font-weight:500;
}

/* Fehler */
.offer-status.is-error{
    border-color:#fecaca;
    background:#fef2f2;
    color:#991b1b;
    font-weight:700;
}

.offer-form{
    position:relative;
}

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

.js .offer-step{
    display:none;
}

.js .offer-step.is-active{
    display:block;
    animation:offerFadeIn .28s ease;
}

@keyframes offerFadeIn{
    from{
        opacity:0;
        transform:translateY(7px);
    }
    to{
        opacity:1;
        transform:none;
    }
}

.offer-step fieldset{
    min-width:0;
    margin:0;
    padding:0;
    border:0;
}

.offer-step legend{
    width:100%;
    margin:0 0 .65rem;
    padding:0;
    color:var(--dark);
    font-size:1.55rem;
    font-weight:800;
    line-height:1.25;
}

.offer-step-intro{
    margin:0 0 2rem;
    color:var(--muted);
}

.offer-service-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1rem;
}

.offer-service-option{
    position:relative;
    display:block;
    cursor:pointer;
}

.offer-service-option > input{
    position:absolute;
    width:1px;
    height:1px;
    margin:-1px;
    padding:0;
    overflow:hidden;
    clip:rect(0 0 0 0);
    clip-path:inset(50%);
    border:0;
    white-space:nowrap;
}

.offer-service-card{
    position:relative;
    display:grid;
    min-height:176px;
    grid-template-columns:52px 1fr;
    grid-template-rows:auto 1fr;
    column-gap:1rem;
    align-items:start;
    padding:1.45rem;
    border:2px solid var(--border);
    border-radius:16px;
    background:#fff;
    transition:.25s ease;
}

.offer-service-card > i{
    grid-row:1 / 3;
    display:flex;
    width:52px;
    height:52px;
    align-items:center;
    justify-content:center;
    border-radius:13px;
    background:#f3f4f6;
    color:var(--primary);
    font-size:1.25rem;
    transition:.25s ease;
}

.offer-service-card strong{
    align-self:end;
    color:var(--dark);
    font-size:1.02rem;
    line-height:1.3;
}

.offer-service-card small{
    align-self:start;
    margin-top:.55rem;
    color:var(--muted);
    font-size:.82rem;
    line-height:1.5;
}

.offer-service-option:hover .offer-service-card{
    transform:translateY(-3px);
    border-color:rgba(183,28,28,.32);
    box-shadow:0 12px 26px rgba(31,41,55,.08);
}

.offer-service-option > input:checked + .offer-service-card{
    border-color:var(--primary);
    background:rgba(183,28,28,.035);
    box-shadow:0 0 0 3px rgba(183,28,28,.09);
}

.offer-service-option > input:checked + .offer-service-card::after{
    content:"\2713";
    position:absolute;
    top:12px;
    right:12px;
    display:flex;
    width:26px;
    height:26px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:.78rem;
    font-weight:900;
}

.offer-service-option > input:checked + .offer-service-card > i{
    background:var(--primary);
    color:#fff;
}

.offer-service-option > input:focus-visible + .offer-service-card{
    outline:3px solid rgba(183,28,28,.22);
    outline-offset:3px;
}

.offer-form-row{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1.2rem;
    margin-bottom:1.2rem;
}

.offer-form-row-location{
    grid-template-columns:minmax(150px,.42fr) minmax(0,1fr);
}

.offer-field{
    display:flex;
    min-width:0;
    flex-direction:column;
    gap:.48rem;
    margin-bottom:1.2rem;
}

.offer-form-row .offer-field{
    margin-bottom:0;
}

.offer-field label,
.offer-label-row label{
    color:var(--dark);
    font-size:.93rem;
    font-weight:750;
}

.offer-label-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
}

.offer-label-row > span{
    flex:0 0 auto;
    color:var(--muted);
    font-size:.78rem;
    font-weight:700;
}

.offer-field input,
.offer-field select,
.offer-field textarea{
    width:100%;
    padding:.95rem 1rem;
    border:1px solid #cfd5dd;
    border-radius:10px;
    background:#fff;
    color:var(--text);
    font:inherit;
    transition:.22s ease;
}

.offer-field select{
    cursor:pointer;
}

.offer-field textarea{
    min-height:190px;
    resize:vertical;
}

.offer-field input::placeholder,
.offer-field textarea::placeholder{
    color:#9ca3af;
}

.offer-field input:focus,
.offer-field select:focus,
.offer-field textarea:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(183,28,28,.1);
}

.offer-field input[aria-invalid="true"],
.offer-field select[aria-invalid="true"],
.offer-field textarea[aria-invalid="true"]{
    border-color:#dc2626;
    box-shadow:0 0 0 3px rgba(220,38,38,.08);
}

.offer-field > small{
    color:var(--muted);
    font-size:.8rem;
    line-height:1.45;
}

.offer-upload{
    position:relative;
    display:flex;
    min-height:185px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:.45rem;
    padding:1.5rem;
    border:2px dashed #cbd5e1;
    border-radius:16px;
    background:#f8fafc;
    text-align:center;
    cursor:pointer;
    transition:.25s ease;
}

.offer-upload:hover,
.offer-upload.is-dragover{
    border-color:var(--primary);
    background:rgba(183,28,28,.035);
}

.offer-upload input{
    position:absolute;
    width:1px;
    height:1px;
    margin:-1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    clip-path:inset(50%);
}

.offer-upload:focus-within{
    outline:3px solid rgba(183,28,28,.18);
    outline-offset:3px;
}

.offer-upload-icon{
    display:flex;
    width:56px;
    height:56px;
    align-items:center;
    justify-content:center;
    margin-bottom:.35rem;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:1.25rem;
    box-shadow:0 8px 20px rgba(183,28,28,.2);
}

.offer-upload strong{
    color:var(--dark);
}

.offer-upload small{
    max-width:480px;
    color:var(--muted);
    font-size:.8rem;
}

.offer-file-error{
    margin-top:.75rem;
    padding:.75rem .9rem;
    border:1px solid #fecaca;
    border-radius:9px;
    background:#fef2f2;
    color:#991b1b;
    font-size:.85rem;
    font-weight:700;
}

.offer-file-list{
    display:grid;
    gap:.55rem;
    margin:.8rem 0 0;
    padding:0;
    list-style:none;
}

.offer-file-list li{
    display:grid;
    grid-template-columns:36px minmax(0,1fr) auto;
    gap:.7rem;
    align-items:center;
    padding:.72rem .8rem;
    border:1px solid var(--border);
    border-radius:10px;
    background:#fff;
}

.offer-file-list .offer-file-type{
    display:flex;
    width:36px;
    height:36px;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    background:#f3f4f6;
    color:var(--primary);
}

.offer-file-list .offer-file-data{
    min-width:0;
}

.offer-file-list strong{
    display:block;
    overflow:hidden;
    color:var(--dark);
    font-size:.84rem;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.offer-file-list small{
    display:block;
    color:var(--muted);
    font-size:.75rem;
}

.offer-file-remove{
    display:flex;
    width:34px;
    height:34px;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    border-radius:50%;
    background:transparent;
    color:#6b7280;
    cursor:pointer;
    transition:.2s ease;
}

.offer-file-remove:hover{
    background:#fef2f2;
    color:#b91c1c;
}

.offer-review{
    margin:1.8rem 0;
    padding:1.25rem;
    border:1px solid var(--border);
    border-radius:14px;
    background:#f8fafc;
}

.offer-review-heading{
    display:flex;
    align-items:center;
    gap:.9rem;
    margin-bottom:1rem;
}

.offer-review-heading > i{
    display:flex;
    width:44px;
    height:44px;
    flex:0 0 44px;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:var(--primary);
    color:#fff;
}

.offer-review-heading div{
    display:flex;
    min-width:0;
    flex-direction:column;
}

.offer-review-heading strong{
    color:var(--dark);
}

.offer-review-heading small{
    color:var(--muted);
}

.offer-review dl{
    display:grid;
    gap:.5rem;
    margin:0;
}

.offer-review dl > div{
    display:grid;
    grid-template-columns:115px minmax(0,1fr);
    gap:1rem;
    padding:.62rem 0;
    border-top:1px solid var(--border);
}

.offer-review dt{
    color:var(--muted);
    font-size:.82rem;
    font-weight:700;
}

.offer-review dd{
    margin:0;
    color:var(--dark);
    font-size:.86rem;
    font-weight:700;
    overflow-wrap:anywhere;
}

.offer-check{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:.8rem;
    align-items:start;
    margin:1.4rem 0;
}

.offer-check input{
    width:18px;
    height:18px;
    margin-top:.25rem;
    accent-color:var(--primary);
}

.offer-check label{
    color:var(--muted);
    font-size:.88rem;
    line-height:1.55;
}

.offer-check a{
    color:var(--primary);
    font-weight:750;
    text-decoration:underline;
    text-underline-offset:2px;
}

.offer-submit-note{
    display:flex;
    gap:.85rem;
    align-items:flex-start;
    padding:1rem;
    border-left:4px solid var(--primary);
    border-radius:0 10px 10px 0;
    background:#f7f8fa;
}

.offer-submit-note i{
    margin-top:.22rem;
    color:var(--primary);
}

.offer-submit-note p{
    margin:0;
    color:var(--muted);
    font-size:.84rem;
}

.offer-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    margin-top:2.2rem;
    padding-top:1.4rem;
    border-top:1px solid var(--border);
}

.offer-actions-end{
    justify-content:flex-end;
}

.offer-button,
.offer-button-secondary{
    display:inline-flex;
    min-height:48px;
    align-items:center;
    justify-content:center;
    gap:.65rem;
    padding:.78rem 1.3rem;
    border-radius:10px;
    font:inherit;
    font-size:.91rem;
    font-weight:750;
    cursor:pointer;
    transition:.25s ease;
}

.offer-button{
    border:1px solid var(--primary);
    background:var(--primary);
    color:#fff;
    box-shadow:0 7px 18px rgba(183,28,28,.18);
}

.offer-button:hover{
    transform:translateY(-2px);
    border-color:var(--primary-hover);
    background:var(--primary-hover);
    box-shadow:0 10px 24px rgba(183,28,28,.24);
}

.offer-button:disabled{
    transform:none;
    opacity:.62;
    cursor:wait;
}

.offer-button-secondary{
    border:1px solid #d1d5db;
    background:#fff;
    color:var(--dark);
}

.offer-button-secondary:hover{
    border-color:#9ca3af;
    background:#f8fafc;
}

html:not(.js) .offer-progress,
html:not(.js) .offer-next,
html:not(.js) .offer-back{
    display:none;
}

html:not(.js) .offer-step{
    margin-bottom:3rem;
}

.offer-sidebar{
    position:sticky;
    top:1.5rem;
    display:grid;
    gap:1rem;
}

.offer-side-card{
    padding:1.5rem;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 30px rgba(31,41,55,.07);
}

.offer-side-card-primary{
    position:relative;
    overflow:hidden;
}

.offer-side-card-primary::after{
    content:"";
    position:absolute;
    right:-55px;
    bottom:-65px;
    width:150px;
    height:150px;
    border-radius:50%;
    background:rgba(183,28,28,.04);
    pointer-events:none;
}

.offer-side-icon{
    display:flex;
    width:48px;
    height:48px;
    align-items:center;
    justify-content:center;
    margin-bottom:1rem;
    border-radius:13px;
    background:var(--primary);
    color:#fff;
    box-shadow:0 8px 18px rgba(183,28,28,.18);
}

.offer-side-card h2{
    color:var(--dark);
    font-size:1.15rem;
}

.offer-side-card p{
    color:var(--muted);
    font-size:.88rem;
}

.offer-side-card ul{
    position:relative;
    z-index:1;
    display:grid;
    gap:.65rem;
    margin:1.15rem 0 0;
    padding:0;
    list-style:none;
}

.offer-side-card li{
    position:relative;
    padding-left:1.45rem;
    color:var(--dark2);
    font-size:.84rem;
    font-weight:650;
}

.offer-side-card li::before{
    content:"\2713";
    position:absolute;
    left:0;
    color:var(--primary);
    font-weight:900;
}

.offer-side-phone{
    display:flex;
    align-items:center;
    gap:.8rem;
    margin-top:1.1rem;
    padding:.9rem;
    border:1px solid var(--border);
    border-radius:12px;
    background:#f8fafc;
}

.offer-side-phone:hover{
    transform:translateY(-2px);
    border-color:rgba(183,28,28,.3);
    box-shadow:0 10px 22px rgba(31,41,55,.08);
}

.offer-side-phone > i{
    display:flex;
    width:42px;
    height:42px;
    flex:0 0 42px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
}

.offer-side-phone > span{
    display:flex;
    min-width:0;
    flex-direction:column;
}

.offer-side-phone strong{
    color:var(--dark);
    font-size:.9rem;
}

.offer-side-phone small{
    color:var(--muted);
}

.offer-side-trust{
    display:flex;
    align-items:flex-start;
    gap:1rem;
    background:linear-gradient(135deg,var(--dark),var(--dark2));
    color:#fff;
}

.offer-side-trust > i{
    margin-top:.2rem;
    color:var(--accent);
    font-size:1.25rem;
}

.offer-side-trust strong{
    display:block;
    margin-bottom:.25rem;
}

.offer-side-trust p{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:.8rem;
}

.offer-process{
    position:relative;
    overflow:hidden;
    margin:5rem 0;
    padding:5rem 3rem;
    border-radius:24px;
    box-shadow:0 18px 45px rgba(31,41,55,.07);
}

.offer-process::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:120px;
    height:5px;
    transform:translateX(-50%);
    border-radius:0 0 10px 10px;
    background:var(--primary);
}

.offer-section-heading{
    max-width:840px;
    margin:0 auto 3rem;
    text-align:center;
}

.offer-section-heading h2{
    color:var(--dark);
    font-size:2.2rem;
}

.offer-section-heading p{
    margin:0;
    color:var(--muted);
}

.offer-process-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1.4rem;
}

.offer-process-grid article{
    position:relative;
    padding:2rem 1.5rem;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    text-align:center;
    box-shadow:0 8px 24px rgba(31,41,55,.05);
}

.offer-process-grid article > span{
    position:absolute;
    top:14px;
    right:16px;
    color:#d1d5db;
    font-size:1.35rem;
    font-weight:900;
}

.offer-process-grid article > i{
    display:inline-flex;
    width:58px;
    height:58px;
    align-items:center;
    justify-content:center;
    margin-bottom:1.15rem;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:1.2rem;
    box-shadow:0 8px 20px rgba(183,28,28,.18);
}

.offer-process-grid h3{
    color:var(--dark);
    font-size:1.08rem;
}

.offer-process-grid p{
    margin:0;
    color:var(--muted);
    font-size:.88rem;
}

.offer-cta{
    position:relative;
    overflow:hidden;
    margin:5rem 0 0;
    padding:5rem 3rem;
    border-radius:24px;
    text-align:center;
    box-shadow:0 18px 45px rgba(31,41,55,.18);
}

.offer-cta::before{
    content:"";
    position:absolute;
    top:-115px;
    right:-105px;
    width:290px;
    height:290px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}

.offer-cta > *{
    position:relative;
    z-index:1;
}

.offer-cta .section-label{
    color:var(--accent);
}

.offer-cta h2{
    max-width:850px;
    margin:0 auto 1rem;
    color:#fff;
    font-size:2.3rem;
}

.offer-cta p{
    max-width:740px;
    margin:0 auto 2rem;
    color:rgba(255,255,255,.8);
}

.offer-cta-actions{
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
}

.offer-cta-actions .button,
.offer-cta-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.65rem;
}

.offer-cta-secondary{
    padding:12px 24px;
    border:2px solid rgba(255,255,255,.72);
    border-radius:10px;
    color:#fff;
    font-weight:700;
}

.offer-cta-secondary:hover{
    transform:translateY(-2px);
    background:#fff;
    color:var(--dark);
}

@media(max-width:1050px){
    .offer-layout{
        grid-template-columns:1fr;
    }

    .offer-sidebar{
        position:static;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .offer-side-card-primary{
        grid-row:span 2;
    }
}

@media(max-width:800px){
    .offer-hero{
        min-height:400px;
        padding:4rem 1.5rem;
        border-radius:18px;
    }

    .offer-layout{
        margin:3rem 0;
    }

    .offer-form-card{
        padding:2.4rem 1.5rem;
        border-radius:18px;
    }

    .offer-service-grid{
        grid-template-columns:1fr;
    }

    .offer-service-card{
        min-height:145px;
    }

    .offer-sidebar{
        grid-template-columns:1fr;
    }

    .offer-side-card-primary{
        grid-row:auto;
    }

    .offer-process{
        margin:3rem 0;
        padding:3.8rem 1.4rem;
        border-radius:18px;
    }

    .offer-process-grid{
        grid-template-columns:1fr;
    }

    .offer-cta{
        margin-top:3rem;
        padding:4rem 1.4rem;
        border-radius:18px;
    }
}

@media(max-width:620px){
    .offer-hero{
        min-height:380px;
        padding:3.5rem 1.15rem;
    }

    .offer-hero h1{
    font-size:2rem;
}

    .offer-hero-points{
        align-items:flex-start;
        flex-direction:column;
        gap:.7rem;
        text-align:left;
    }

    .offer-form-card{
        padding:2rem 1.05rem;
    }

    .offer-form-heading h2,
    .offer-section-heading h2,
    .offer-cta h2{
        font-size:1.75rem;
    }

    .offer-progress{
        margin:2rem 0 2.5rem;
    }

    .offer-progress li strong{
        font-size:.75rem;
    }

    .offer-progress li > span{
        width:38px;
        height:38px;
    }

    .offer-progress li:not(:last-child)::after{
        top:18px;
        left:calc(50% + 25px);
        width:calc(100% - 50px);
    }

    .offer-step legend{
        font-size:1.35rem;
    }

    .offer-service-card{
        min-height:0;
        grid-template-columns:44px 1fr;
        padding:1.15rem;
    }

    .offer-service-card > i{
        width:44px;
        height:44px;
        font-size:1.05rem;
    }

    .offer-form-row,
    .offer-form-row-location{
        grid-template-columns:1fr;
    }

    .offer-upload{
        min-height:170px;
        padding:1.2rem;
    }

    .offer-review dl > div{
        grid-template-columns:1fr;
        gap:.2rem;
    }

    .offer-actions{
        align-items:stretch;
        flex-direction:column-reverse;
    }

    .offer-actions-end{
        flex-direction:column;
    }

    .offer-button,
    .offer-button-secondary{
        width:100%;
    }

    .offer-process{
        padding:3.2rem 1rem;
    }

    .offer-process::before{
        width:90px;
    }

    .offer-cta{
        padding:3.5rem 1.1rem;
    }

    .offer-cta-actions{
        flex-direction:column;
    }

    .offer-cta-actions a{
        width:100%;
    }
}

@media(prefers-reduced-motion:reduce){
    .offer-service-card,
    .offer-button,
    .offer-button-secondary,
    .offer-side-phone,
    .offer-cta-secondary{
        transition:none;
    }

    .js .offer-step.is-active{
        animation:none;
    }
}
