.hero-section {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(47, 128, 237, 0.12) 0 32%, transparent 32% 100%),
        linear-gradient(24deg, transparent 0 62%, rgba(255, 176, 32, 0.2) 62% 100%),
        var(--bg);
    display: grid;
    gap: 52px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    min-height: 100vh;
    padding: 134px 6vw 76px;
    position: relative;
}

.hero-content {
    animation: riseIn 0.8s ease both;
    max-width: 760px;
}

#Titre {
    color: var(--ink);
    font-size: 4.35rem;
    font-weight: 900;
    line-height: 1.02;
    margin-top: 16px;
}

.hero-lead {
    color: var(--muted);
    font-size: 1.2rem;
    margin-top: 22px;
    max-width: 650px;
}

.animated-service {
    align-items: baseline;
    background: #ffffff;
    border: 1px solid var(--line);
    border-left: 6px solid var(--coral);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    min-height: 58px;
    padding: 14px 16px;
}

.animated-service span {
    color: var(--muted);
    font-weight: 800;
}

#TitrePrestation {
    color: var(--coral);
    font-size: 1.55rem;
    font-weight: 900;
    min-width: 250px;
}

#TitrePrestation::after {
    animation: caretBlink 0.9s steps(1) infinite;
    content: "|";
    margin-left: 3px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-panel {
    animation: panelFloat 5.5s ease-in-out infinite;
    background:
        radial-gradient(circle at 84% 10%, rgba(255, 176, 32, 0.28), transparent 28%),
        linear-gradient(145deg, #111820, #1d2c48 58%, #2f80ed);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
    overflow: hidden;
    padding: 18px;
    position: relative;
}

.hero-showcase-top {
    align-items: center;
    color: #ffffff;
    display: grid;
    gap: 12px;
    grid-template-columns: 42px minmax(0, 1fr);
}

.hero-showcase-top > span {
    background: linear-gradient(135deg, var(--coral), var(--yellow));
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(255, 92, 138, 0.25);
    height: 42px;
    position: relative;
}

.hero-showcase-top > span::after {
    background: #ffffff;
    border-radius: 999px;
    content: "";
    height: 14px;
    left: 14px;
    position: absolute;
    top: 14px;
    width: 14px;
}

.hero-showcase-top strong,
.hero-showcase-top small {
    display: block;
}

.hero-showcase-top small {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.hero-showcase-screen {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
    display: grid;
    gap: 16px;
    grid-template-columns: 132px minmax(0, 1fr);
    padding: 16px;
}

.showcase-visual {
    align-items: end;
    background:
        linear-gradient(135deg, rgba(47, 128, 237, 0.22), rgba(19, 184, 166, 0.18)),
        #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    gap: 8px;
    min-height: 132px;
    padding: 16px;
}

.showcase-visual i {
    background: var(--blue);
    border-radius: 999px 999px 8px 8px;
    box-shadow: 0 12px 22px rgba(47, 128, 237, 0.22);
    display: block;
    flex: 1;
}

.showcase-visual i:nth-child(1) {
    height: 44%;
}

.showcase-visual i:nth-child(2) {
    background: var(--coral);
    height: 72%;
}

.showcase-visual i:nth-child(3) {
    background: var(--yellow);
    height: 56%;
}

.hero-showcase-screen span {
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-showcase-screen strong {
    color: var(--ink);
    display: block;
    font-size: 1.45rem;
    line-height: 1.08;
    margin-top: 6px;
}

.hero-showcase-screen p {
    color: var(--muted);
    margin-top: 10px;
}

.workflow-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    color: #ffffff;
    min-height: 156px;
    padding: 16px;
    position: relative;
    transition: transform 0.22s ease, background 0.22s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.metric-card::before {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    content: "";
    height: 44px;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 44px;
}

.metric-card:nth-child(2)::before {
    background: rgba(19, 184, 166, 0.26);
}

.metric-card span {
    color: var(--yellow);
    display: block;
    font-weight: 900;
    margin-bottom: 12px;
}

.metric-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
}

.metric-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.split-section {
    align-items: center;
    background: var(--surface);
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.feature-list span {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font-weight: 900;
    padding: 10px 12px;
}

.visual-frame {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(19, 184, 166, 0.16), transparent 46%),
        linear-gradient(315deg, rgba(255, 92, 138, 0.12), transparent 46%),
        var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: center;
    min-height: 380px;
    padding: 36px;
}

.ImgPres,
.contact-visual {
    height: auto;
    object-fit: contain;
    width: min(100%, 320px);
}

.projects-preview {
    background:
        linear-gradient(90deg, rgba(47, 128, 237, 0.08), transparent 42%),
        var(--bg);
}

.project-preview-grid,
.project-gallery {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-preview-card,
.project-card,
.offer-card,
.service-card,
.legal-card,
.admin-panel,
.admin-project-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.project-preview-card,
.project-card {
    display: grid;
    gap: 18px;
    overflow: hidden;
    padding: 14px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.project-preview-card:hover,
.project-card:hover,
.offer-card:hover,
.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.project-slideshow,
.project-visual {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(47, 128, 237, 0.18), rgba(255, 176, 32, 0.18));
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.project-slide {
    height: 100%;
    inset: 0;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    transform: scale(1.03);
    transition: opacity 0.55s ease, transform 0.8s ease;
    width: 100%;
}

.project-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-indicator {
    bottom: 12px;
    display: flex;
    gap: 6px;
    left: 12px;
    position: absolute;
    z-index: 2;
}

.slide-indicator span {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    height: 7px;
    width: 18px;
}

.slide-indicator span.active {
    background: var(--yellow);
}

.project-photo-placeholder {
    align-items: center;
    color: var(--blue-dark);
    display: flex;
    font-weight: 900;
    height: 100%;
    justify-content: center;
    min-height: 180px;
    text-align: center;
    width: 100%;
}

.project-preview-card h3,
.project-card h2 {
    font-size: 1.25rem;
    line-height: 1.2;
}

.project-preview-card p,
.project-card p {
    color: var(--muted);
    margin-top: 8px;
}

.contact-section {
    align-items: start;
    background: var(--surface);
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.contact-visual {
    margin-top: 34px;
    max-height: 300px;
}

.contact-info-panel {
    background:
        linear-gradient(135deg, rgba(47, 128, 237, 0.12), transparent 48%),
        #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 14px;
    margin-top: 26px;
    padding: 18px;
}

.contact-phone {
    color: var(--blue-dark);
    font-size: 1.55rem;
    font-weight: 900;
}

.availability-list {
    display: grid;
    gap: 8px;
}

.availability-list p {
    align-items: center;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 12px;
}

.availability-list span {
    color: var(--blue-dark);
    font-weight: 900;
}

.contact-info-panel small {
    color: var(--muted);
    font-weight: 800;
}

.contact-form,
.admin-form {
    display: grid;
    gap: 12px;
}

.contact-form {
    background:
        linear-gradient(135deg, rgba(47, 128, 237, 0.1), transparent 48%),
        #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: 30px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

label {
    color: var(--ink);
    font-weight: 900;
}

.required-star {
    color: #d91e48;
    font-weight: 900;
}

input,
select,
textarea {
    background: #ffffff;
    border: 1px solid #cbd8e8;
    border-radius: 8px;
    color: var(--ink);
    min-height: 48px;
    outline: none;
    padding: 12px 14px;
    width: 100%;
}

input[type="file"] {
    background: var(--surface-soft);
    cursor: pointer;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.14);
}

.page-hero {
    padding: 150px 6vw 74px;
}

.compact-hero {
    background:
        linear-gradient(120deg, rgba(19, 184, 166, 0.12), transparent 44%),
        var(--surface);
}

.project-gallery-section {
    padding-top: 36px;
}

.project-content {
    padding: 0 4px 8px;
}

.project-content .text-link {
    display: inline-flex;
    margin-top: 18px;
}

.offers-hero {
    background:
        linear-gradient(135deg, rgba(47, 128, 237, 0.45), transparent 40%),
        linear-gradient(24deg, transparent 0 62%, rgba(255, 92, 138, 0.28) 62% 100%),
        var(--ink);
    color: #ffffff;
}

.offers-hero .TitrePage,
.offers-hero .page-lead {
    color: #ffffff;
}

.offers-hero .page-lead {
    color: rgba(255, 255, 255, 0.78);
}

.offers-hero .eyebrow {
    color: var(--yellow);
}

.offer-section {
    background: var(--surface);
}

.quote-note {
    background: rgba(255, 176, 32, 0.18);
    border: 1px solid rgba(255, 176, 32, 0.35);
    border-radius: 8px;
    color: #875700;
    font-weight: 900;
    padding: 12px 14px;
}

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

.offer-card {
    display: grid;
    grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
    overflow: hidden;
}

.offer-visual {
    align-content: space-between;
    display: grid;
    min-height: 100%;
    padding: 30px;
}

.offer-static .offer-visual {
    background: linear-gradient(160deg, rgba(47, 128, 237, 0.95), rgba(19, 184, 166, 0.82));
}

.offer-dynamic .offer-visual {
    background: linear-gradient(160deg, rgba(255, 92, 138, 0.96), rgba(255, 176, 32, 0.84));
}

.offer-number {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 900;
}

.offer-pill,
.service-badge {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    color: var(--ink);
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    padding: 8px 10px;
}

.offer-body,
.service-card {
    padding: 30px;
}

.offer-card.highlighted {
    border-color: rgba(255, 92, 138, 0.35);
}

.offer-label {
    color: var(--green);
    font-weight: 900;
}

.offer-card h3 {
    font-size: 2rem;
    margin-top: 8px;
}

.price {
    color: var(--coral);
    font-size: 2.5rem;
    font-weight: 900;
    margin: 12px 0;
}

.offer-card p:not(.price),
.service-card p {
    color: var(--muted);
}

.offer-card ul {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.offer-card li {
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-weight: 800;
    padding-top: 10px;
}

.service-pricing {
    background:
        linear-gradient(90deg, rgba(255, 176, 32, 0.12), transparent 50%),
        var(--bg);
}

.service-card {
    position: relative;
}

.service-badge {
    background: var(--surface-soft);
    color: var(--blue-dark);
    margin-bottom: 18px;
}

.service-card h2 {
    font-size: 2rem;
    margin: 8px 0 12px;
}

.cta-band {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(47, 128, 237, 0.1), rgba(19, 184, 166, 0.08)),
        var(--surface);
    border-top: 1px solid var(--line);
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.cta-band h2 {
    font-size: 2rem;
    line-height: 1.15;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.legal-section {
    background: var(--bg);
}

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

.legal-card {
    padding: 30px;
}

.legal-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.legal-card dl {
    display: grid;
    gap: 14px;
}

.legal-card dl div {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 4px;
    padding-top: 14px;
}

.legal-card dt {
    color: var(--muted);
    font-weight: 800;
}

.legal-card dd {
    font-weight: 900;
}

.admin-main {
    background: #eef4fb;
    min-height: 100vh;
    padding: 132px 6vw 72px;
}

.admin-panel {
    margin: 0 auto 28px;
    max-width: 1120px;
    padding: 30px;
}

.admin-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.login-panel {
    max-width: 560px;
}

.admin-panel h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin: 8px 0 22px;
}

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

.compact-grid {
    align-items: start;
}

.project-create-form {
    border-top: 1px solid var(--line);
    margin-top: 22px;
    padding-top: 22px;
}

.photo-upload-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-upload-card {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    padding: 14px;
}

.admin-photo-thumb {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.checkbox-line {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 0.9rem;
    gap: 8px;
}

.checkbox-line input {
    min-height: auto;
    width: auto;
}

.admin-list {
    display: grid;
    gap: 22px;
    margin: 0 auto;
    max-width: 1120px;
}

.admin-project-card {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) auto;
    padding: 18px;
}

.admin-project-preview {
    aspect-ratio: 4 / 3;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.admin-project-preview img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.delete-form {
    align-self: start;
}

.danger-btn {
    background: rgba(255, 92, 138, 0.12);
    color: #a8204e;
}

.danger-btn:hover {
    background: var(--coral);
    color: #ffffff;
}

.quote-builder-panel,
.quote-preview-shell {
    max-width: 1120px;
}

.quote-form-block {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding-top: 18px;
}

.quote-form-block h2 {
    font-size: 1.2rem;
}

.quote-preview-shell {
    margin: 0 auto;
}

.quote-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.quote-document {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: #20242c;
    margin: 0 auto;
    max-width: 840px;
    padding: 54px;
}

.quote-header {
    align-items: start;
    border-bottom: 3px solid var(--blue);
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 24px;
}

.quote-brand {
    color: var(--blue);
    font-size: 2.1rem;
    font-weight: 900;
}

.quote-title-block {
    text-align: right;
}

.quote-title-block h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.quote-client-block,
.quote-section {
    margin-top: 28px;
}

.quote-client-block {
    background: var(--surface-soft);
    border-radius: 8px;
    padding: 18px;
}

.quote-section h3,
.quote-client-block h3,
.quote-signature h3 {
    color: var(--blue-dark);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.quote-feature-list {
    display: grid;
    gap: 13px;
}

.quote-feature {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: 26px minmax(0, 1fr);
}

.quote-feature span {
    align-items: center;
    background: var(--green);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 900;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.quote-feature p {
    color: var(--muted);
}

.quote-table {
    border-collapse: collapse;
    width: 100%;
}

.quote-table th,
.quote-table td {
    border-bottom: 1px solid var(--line);
    padding: 12px;
    text-align: left;
}

.quote-table th:last-child,
.quote-table td:last-child {
    text-align: right;
}

.quote-table th {
    background: var(--ink);
    color: #ffffff;
}

.quote-signature {
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 22px;
}

.builder-main-cta {
    font-size: 1.05rem;
}

.builder-hero {
    background:
        linear-gradient(135deg, rgba(255, 92, 138, 0.18), transparent 42%),
        linear-gradient(24deg, transparent 0 62%, rgba(47, 128, 237, 0.18) 62% 100%),
        var(--ink);
    color: #ffffff;
}

.builder-hero .TitrePage,
.builder-hero .page-lead {
    color: #ffffff;
}

.builder-hero .page-lead {
    color: rgba(255, 255, 255, 0.78);
}

.builder-hero .eyebrow {
    color: var(--yellow);
}

.builder-section {
    background: var(--bg);
    padding: 48px 6vw 96px;
}

.builder-errors,
.builder-wizard {
    margin: 0 auto;
    max-width: 1080px;
}

.builder-errors {
    background: rgba(255, 92, 138, 0.12);
    border: 1px solid rgba(255, 92, 138, 0.24);
    border-radius: 8px;
    color: #9b2351;
    margin-bottom: 18px;
    padding: 18px;
}

.builder-wizard {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 24px;
    padding: 30px;
}

.wizard-progress-top {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.wizard-progress-top span {
    color: var(--muted);
    font-weight: 900;
}

.wizard-progress-top strong {
    color: var(--blue-dark);
    font-size: 1.1rem;
}

.wizard-progress-track {
    background: var(--surface-soft);
    border-radius: 8px;
    height: 12px;
    overflow: hidden;
}

.wizard-progress-track span {
    background: linear-gradient(90deg, var(--blue), var(--coral), var(--yellow));
    display: block;
    height: 100%;
    transition: width 0.25s ease;
    width: 12.5%;
}

.wizard-step {
    border: 0;
    display: none;
    min-inline-size: 0;
}

.wizard-step.active {
    animation: riseIn 0.35s ease both;
    display: grid;
    gap: 18px;
}

.wizard-step-heading h2 {
    font-size: 2rem;
}

.choice-group {
    display: grid;
    gap: 12px;
}

.choice-title {
    color: var(--ink);
    font-weight: 900;
}

.choice-grid,
.visual-choice-grid,
.typography-grid,
.upload-grid,
.color-grid,
.theme-grid,
.mood-visual-grid {
    display: grid;
    gap: 14px;
}

.choice-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-choice-grid,
.upload-grid,
.color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.typography-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.theme-grid,
.mood-visual-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-card,
.visual-choice-card,
.typography-card,
.upload-card,
.color-card,
.theme-card,
.mood-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 10px;
    padding: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.choice-card:hover,
.visual-choice-card:hover,
.typography-card:hover,
.upload-card:hover,
.color-card:hover,
.theme-card:hover,
.mood-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.choice-card input,
.visual-choice-card input,
.typography-card input,
.theme-card input,
.mood-card input {
    min-height: auto;
    width: auto;
}

.choice-card:has(input:checked),
.visual-choice-card:has(input:checked),
.typography-card:has(input:checked),
.theme-card:has(input:checked),
.mood-card:has(input:checked) {
    background: rgba(47, 128, 237, 0.1);
    border-color: var(--blue);
}

.icon-choice-card {
    align-content: start;
}

.builder-icon {
    align-items: center;
    background: linear-gradient(135deg, rgba(47, 128, 237, 0.16), rgba(255, 92, 138, 0.12));
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--blue);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.builder-icon svg {
    height: 24px;
    width: 24px;
}

.icon-choice-card small,
.mood-card small,
.no-assets-card small {
    color: var(--muted);
}

.no-assets-card {
    grid-template-columns: auto minmax(0, 1fr);
}

.no-assets-card small {
    grid-column: 2;
}

.visual-sample {
    background:
        linear-gradient(135deg, rgba(47, 128, 237, 0.2), transparent),
        #ffffff;
    border: 2px solid var(--blue);
    display: block;
    height: 84px;
}

.website-border-preview {
    align-content: start;
    display: grid;
    gap: 7px;
    min-height: 118px;
    padding: 12px;
}

.website-border-preview i {
    background: #ffffff;
    display: block;
}

.website-border-preview i:nth-child(1) {
    height: 22px;
    width: 80%;
}

.website-border-preview i:nth-child(2),
.website-border-preview i:nth-child(3),
.website-border-preview i:nth-child(4) {
    height: 14px;
}

.border-sample-0 .visual-sample {
    border-radius: 0;
}

.border-sample-0 .visual-sample i {
    border-radius: 0;
}

.border-sample-1 .visual-sample {
    border-radius: 8px;
}

.border-sample-1 .visual-sample i {
    border-radius: 6px;
}

.border-sample-2 .visual-sample {
    border-radius: 28px;
}

.border-sample-2 .visual-sample i {
    border-radius: 16px;
}

.upload-card span,
.color-card span {
    font-weight: 900;
}

.upload-card small,
.typography-card small {
    color: var(--muted);
}

.file-count {
    color: var(--green) !important;
    font-weight: 900;
}

.color-card input[type="color"] {
    cursor: pointer;
    height: 68px;
    padding: 5px;
}

.theme-card {
    align-content: start;
}

.theme-swatches {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, 1fr);
}

.theme-swatches i {
    border: 1px solid var(--line);
    border-radius: 8px;
    height: 46px;
}

.form-hint {
    color: var(--muted);
    font-weight: 700;
}

.palette-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.palette-button {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    cursor: pointer;
    font-weight: 900;
    min-height: 42px;
    padding: 0 14px;
}

.choice-card,
.visual-choice-card,
.typography-card,
.theme-card,
.mood-card {
    overflow: hidden;
    padding-right: 48px;
    position: relative;
}

.choice-card > input[type="checkbox"],
.choice-card > input[type="radio"],
.visual-choice-card > input[type="radio"],
.typography-card > input[type="radio"],
.theme-card > input[type="radio"],
.mood-card > input[type="radio"] {
    appearance: none;
    background: #ffffff;
    border: 2px solid #c7d4e6;
    border-radius: 999px;
    height: 21px;
    min-height: 21px;
    padding: 0;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 21px;
}

.choice-card > input[type="checkbox"] {
    border-radius: 7px;
}

.choice-card > input:checked,
.visual-choice-card > input:checked,
.typography-card > input:checked,
.theme-card > input:checked,
.mood-card > input:checked {
    background: radial-gradient(circle, #ffffff 0 28%, var(--blue) 31% 100%);
    border-color: var(--blue);
    box-shadow: 0 8px 18px rgba(47, 128, 237, 0.2);
}

.choice-card > input[type="checkbox"]:checked {
    background:
        linear-gradient(135deg, transparent 0 36%, #ffffff 36% 48%, transparent 48%),
        linear-gradient(45deg, transparent 0 48%, #ffffff 48% 60%, transparent 60%),
        var(--blue);
}

.choice-card:has(input:checked),
.visual-choice-card:has(input:checked),
.typography-card:has(input:checked),
.theme-card:has(input:checked),
.mood-card:has(input:checked) {
    box-shadow: 0 18px 42px rgba(47, 128, 237, 0.18);
    transform: translateY(-3px);
}

.theme-card:has(input[value="Personnaliser"]) .theme-swatches i {
    background: #d1d5db !important;
}

.mood-card,
.typography-card {
    background: #ffffff;
}

.mood-card:hover .mood-shot,
.typography-card:hover .typography-preview {
    transform: scale(1.025);
}

.mood-card:has(input:checked) .mood-shot,
.typography-card:has(input:checked) .typography-preview {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65), 0 18px 38px rgba(15, 23, 42, 0.18);
}

.mood-shot,
.typography-preview {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
    display: grid;
    gap: 10px;
    min-height: 210px;
    overflow: hidden;
    padding: 12px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.typography-preview span,
.typography-preview em,
.typography-preview strong,
.typography-preview small {
    display: block;
}

.mood-shot {
    aspect-ratio: 1 / 1;
    background: #ffffff;
    min-height: 0;
    padding: 0;
    position: relative;
}

.mood-shot::after {
    background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.34) 50%, transparent 58% 100%);
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateX(-35%);
    transition: opacity 0.28s ease, transform 0.45s ease;
}

.mood-card:hover .mood-shot::after {
    opacity: 1;
    transform: translateX(35%);
}

.mood-shot img {
    border-radius: inherit;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.28s ease;
    width: 100%;
}

.mood-card:hover .mood-shot img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.035);
}

.mood-card:has(input:checked) .mood-shot img {
    transform: scale(1.02);
}

.typography-card {
    align-content: start;
}

.typography-preview {
    background: #ffffff;
    color: var(--ink);
    min-height: 190px;
}

.typography-preview strong {
    font-size: 1rem;
    line-height: 1.05;
}

.typography-preview small {
    color: var(--muted);
    font-size: 0.65rem;
    line-height: 1.25;
}

.typography-preview em {
    align-self: start;
    background: var(--blue);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.62rem;
    font-style: normal;
    font-weight: 900;
    justify-self: start;
    padding: 8px 10px;
}

.typography-preview span {
    background: var(--surface-soft);
    border-radius: 12px;
    color: var(--muted);
    font-size: 0.62rem;
    line-height: 1.35;
    padding: 10px;
}

.typography-modern-sans {
    font-family: "Quicksand", Avenir, Arial, sans-serif;
}

.typography-elegant-serif {
    background: linear-gradient(135deg, #111820, #2d2418);
    color: #f8f5ef;
    font-family: Georgia, "Times New Roman", serif;
}

.typography-elegant-serif small,
.typography-elegant-serif span {
    color: rgba(248, 245, 239, 0.72);
}

.typography-elegant-serif em {
    background: #d6b15f;
    color: #111820;
}

.typography-elegant-serif span {
    background: rgba(248, 245, 239, 0.12);
}

.typography-bold-impact strong {
    font-size: 1.18rem;
    font-weight: 900;
    text-transform: uppercase;
}

.typography-bold-impact {
    background: linear-gradient(135deg, #ff5c8a, #ffb020);
}

.typography-bold-impact em {
    background: #111820;
}

.typography-bold-impact span {
    background: rgba(255, 255, 255, 0.58);
    color: #111820;
    font-weight: 800;
}

.typography-minimal-thin {
    color: #1f2937;
    font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
}

.typography-minimal-thin strong {
    font-weight: 400;
}

.typography-minimal-thin em {
    background: #111820;
}

.typography-tech-geometric {
    background: linear-gradient(145deg, #0f172a, #17243a);
    color: #dff7ff;
    font-family: "Trebuchet MS", Avenir, Arial, sans-serif;
}

.typography-tech-geometric small,
.typography-tech-geometric span {
    color: rgba(224, 242, 254, 0.72);
}

.typography-tech-geometric em {
    background: #38bdf8;
    color: #0f172a;
}

.typography-tech-geometric span {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.24);
}

.wizard-actions {
    border-top: 1px solid var(--line);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-top: 20px;
}

.builder-submit {
    display: none;
}

.confirmation-section {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(19, 184, 166, 0.18), transparent 45%),
        var(--bg);
    display: flex;
    min-height: 80vh;
    padding: 150px 6vw 80px;
}

.confirmation-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 760px;
    padding: 42px;
}

.confirmation-card h1 {
    font-size: 2.6rem;
    line-height: 1.05;
    margin: 10px 0 16px;
}

.confirmation-summary {
    background: var(--surface-soft);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding: 18px;
}

select {
    background: #ffffff;
    border: 1px solid #cbd8e8;
    border-radius: 8px;
    color: var(--ink);
    min-height: 48px;
    padding: 12px 14px;
}

.site-requests-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
}

.request-list {
    display: grid;
    gap: 10px;
}

.request-list-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 4px;
    font: inherit;
    padding: 14px;
}

.request-list-item.active {
    background: rgba(47, 128, 237, 0.1);
    border-color: var(--blue);
}

.request-list-item span {
    font-weight: 900;
}

.request-list-item small {
    color: var(--muted);
}

.request-list-item em {
    color: var(--coral);
    font-style: normal;
    font-weight: 900;
}

.request-detail {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.request-detail-head {
    align-items: start;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding-bottom: 20px;
}

.status-form {
    display: grid;
    gap: 10px;
    min-width: 220px;
}

.request-detail-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
}

.request-detail-grid section,
.request-assets,
.request-prompt {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
}

.admin-design-preview {
    display: grid;
    gap: 12px;
}

.admin-mood-preview {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    gap: 8px;
    overflow: hidden;
    padding: 10px;
}

.admin-mood-preview img {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.admin-mood-preview span,
.admin-design-chip span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-mood-preview strong,
.admin-design-chip strong {
    color: var(--ink);
    display: block;
}

.admin-design-details {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-design-chip {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    gap: 8px;
    padding: 12px;
}

.admin-border-sample {
    background:
        linear-gradient(90deg, var(--blue) 0 46%, transparent 46% 100%),
        var(--surface-soft);
    border: 1px solid var(--line);
    display: block;
    height: 42px;
}

.admin-border-carres {
    border-radius: 0;
}

.admin-border-legerement-arrondis {
    border-radius: 8px;
}

.admin-border-tres-arrondis {
    border-radius: 22px;
}

.admin-design-chip em {
    align-items: center;
    background: linear-gradient(135deg, #111820, var(--blue));
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 64px;
}

.admin-color-line {
    margin-top: 12px;
}

.request-detail-grid h3,
.request-assets h3,
.request-prompt h3 {
    margin-bottom: 10px;
}

.asset-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
}

.asset-list a {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    padding: 12px;
}

.asset-list span {
    color: var(--blue);
    font-weight: 900;
}

.request-assets,
.request-prompt {
    margin-top: 18px;
}

.request-prompt textarea {
    min-height: 260px;
}

.empty-state {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
}

.detailed-confirmation-summary {
    gap: 18px;
}

.confirmation-summary-head {
    align-items: start;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-bottom: 14px;
}

.confirmation-summary-head strong {
    font-size: 1.18rem;
}

.confirmation-summary-head span {
    color: var(--muted);
    font-weight: 800;
}

.confirmation-summary-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.confirmation-summary-grid section {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
}

.confirmation-summary-grid h2 {
    color: var(--blue-dark);
    font-size: 1rem;
    margin-bottom: 10px;
}

.confirmation-summary-grid p {
    color: var(--muted);
    margin-top: 6px;
}

.confirmation-summary-grid strong {
    color: var(--ink);
}

.summary-color-line {
    display: grid;
    gap: 8px;
    margin-top: 6px;
}

.color-cube-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-cube-item {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex;
    gap: 8px;
    padding: 7px 9px;
}

.color-cube-item i {
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
    display: block;
    height: 24px;
    width: 24px;
}

.color-cube-item small {
    color: var(--muted);
    font-weight: 900;
}

.dashboard-panel,
.project-admin-panel,
.site-requests-panel {
    max-width: 1280px;
}

.dashboard-overview {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.dashboard-stat-card,
.dashboard-chart-card,
.dashboard-focus-card,
.latest-request-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}

.dashboard-stat-card span,
.latest-request-card span {
    color: var(--muted);
    font-weight: 900;
}

.dashboard-stat-card strong {
    color: var(--blue-dark);
    display: block;
    font-size: 2.6rem;
    line-height: 1;
    margin: 10px 0;
}

.dashboard-stat-card p,
.dashboard-focus-card p,
.latest-request-card small {
    color: var(--muted);
}

.dashboard-analytics {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
    margin-top: 18px;
}

.dashboard-chart-card {
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: 220px minmax(0, 1fr);
}

.request-donut {
    align-items: center;
    aspect-ratio: 1;
    background: var(--request-chart);
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.request-donut::after {
    background: var(--bg);
    border-radius: inherit;
    content: "";
    inset: 28px;
    position: absolute;
}

.request-donut span,
.request-donut small {
    position: relative;
    z-index: 1;
}

.request-donut span {
    color: var(--ink);
    font-size: 2.4rem;
    font-weight: 900;
}

.request-donut small {
    color: var(--muted);
    font-weight: 900;
}

.dashboard-legend {
    display: grid;
    gap: 9px;
}

.dashboard-legend a {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    grid-template-columns: 12px minmax(0, 1fr) auto;
    padding: 11px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-legend a:hover,
.dashboard-legend a.active {
    box-shadow: var(--shadow-soft);
    transform: translateX(3px);
}

.dashboard-legend i {
    border-radius: 999px;
    height: 12px;
    width: 12px;
}

.dashboard-legend span,
.dashboard-legend strong {
    font-weight: 900;
}

.dashboard-focus-card h2 {
    font-size: 1.8rem;
    margin: 4px 0 8px;
}

.latest-request-card {
    margin-top: 18px;
}

.latest-request-card strong {
    display: block;
    font-size: 1.25rem;
    margin: 6px 0;
}

.admin-toolbar,
.request-admin-toolbar {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
    margin: 22px 0;
}

.admin-toolbar {
    grid-template-columns: 1fr;
    margin: 0 auto 4px;
    max-width: 1120px;
}

.admin-search,
.admin-filter {
    display: grid;
    gap: 8px;
}

.admin-search span,
.admin-filter span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 900;
}

.dynamic-requests-layout {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
}

.request-list {
    align-content: start;
    max-height: 76vh;
    overflow: auto;
    padding-right: 4px;
}

.request-list-item {
    color: var(--ink);
    text-align: left;
    width: 100%;
}

.request-list-item span {
    font-size: 0.98rem;
    line-height: 1.15;
}

.request-list-item small {
    font-size: 0.82rem;
    line-height: 1.25;
}

.request-list-item em {
    background: rgba(255, 92, 138, 0.1);
    border-radius: 999px;
    justify-self: start;
    padding: 5px 8px;
}

.request-detail-stack {
    min-width: 0;
}

.request-detail {
    display: none;
    position: relative;
}

.request-detail.active {
    animation: riseIn 0.25s ease both;
    display: block;
}

.request-delete-form {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.icon-danger-btn {
    align-items: center;
    background: rgba(255, 92, 138, 0.12);
    border: 0;
    border-radius: 8px;
    color: #a8204e;
    cursor: pointer;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    width: 44px;
}

.icon-danger-btn svg {
    height: 21px;
    width: 21px;
}

.icon-danger-btn:hover {
    background: var(--coral);
    color: #ffffff;
    transform: translateY(-2px);
}

.admin-empty-state {
    display: none;
    margin: 0;
}

.quote-extra-note {
    min-height: 130px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes caretBlink {
    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes panelFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1100px) {
    .hero-section,
    .split-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .project-preview-grid,
    .project-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .choice-grid,
    .typography-grid,
    .theme-grid,
    .mood-visual-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-requests-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-overview,
    .dashboard-analytics,
    .dashboard-chart-card,
    .confirmation-summary-grid {
        grid-template-columns: 1fr;
    }

    .admin-project-card {
        grid-template-columns: 1fr;
    }

    .delete-form {
        justify-self: start;
    }

    .request-list {
        max-height: none;
    }
}

@media (max-width: 760px) {
    .hero-section {
        min-height: auto;
        padding: 180px 20px 64px;
    }

    #Titre {
        font-size: 2.7rem;
    }

    .page-hero,
    .admin-main {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 178px;
    }

    .project-preview-grid,
    .project-gallery,
    .offer-grid,
    .service-pricing,
    .admin-form-grid,
    .form-grid,
    .photo-upload-grid,
    .legal-grid,
    .choice-grid,
    .visual-choice-grid,
    .typography-grid,
    .theme-grid,
    .mood-visual-grid,
    .upload-grid,
    .color-grid,
    .request-detail-grid,
    .asset-list,
    .workflow-grid,
    .hero-showcase-screen,
    .admin-design-details {
        grid-template-columns: 1fr;
    }

    .request-admin-toolbar {
        grid-template-columns: 1fr;
    }

    .confirmation-summary-head {
        flex-direction: column;
    }

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

    .offer-visual {
        min-height: 180px;
    }

    .contact-section {
        gap: 34px;
    }

    .contact-form,
    .admin-panel,
    .service-card,
    .quote-document {
        padding: 22px;
    }

    .cta-band,
    .quote-header,
    .request-detail-head {
        align-items: stretch;
        flex-direction: column;
    }

    .quote-title-block {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .hero-panel {
        animation: none;
        display: none;
    }

    .animated-service {
        align-items: flex-start;
        flex-direction: column;
        min-height: 96px;
    }

    #TitrePrestation {
        font-size: 1.28rem;
        min-width: 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .builder-wizard,
    .confirmation-card {
        padding: 22px;
    }

    .wizard-actions {
        flex-direction: column;
    }

    .visual-frame {
        min-height: 260px;
        padding: 24px;
    }
}

@media print {
    body {
        background: #ffffff;
    }

    .site-header,
    .no-print,
    .quote-builder-panel {
        display: none !important;
    }

    .admin-main {
        background: #ffffff;
        padding: 0;
    }

    .quote-preview-shell {
        margin: 0;
        max-width: none;
    }

    .quote-document {
        border-radius: 0;
        box-shadow: none;
        max-width: none;
        min-height: 100vh;
        padding: 18mm;
    }
}
