﻿/* =========================
   Antesy-like theme
   Page: /accompagnement-digital-ia
   ========================= */

:root {
    --adi-teal: rgb(0,150,136);
    --adi-teal-2: rgb(0,184,165);
    --adi-ink: #0f172a;
    --adi-muted: rgba(15,23,42,.68);
    --adi-card: rgba(255,255,255,.92);
    --adi-line: rgba(15,23,42,.10);
    --adi-shadow: 0 10px 30px rgba(2,6,23,.08);
    --adi-radius: 18px;
    /* Couleurs par offre (pas d’orange) */
    --pack-fer: #64748b; /* acier / gris-bleuté */
    --pack-platine: #0ea5a4; /* teal propre */
    --pack-diamant: #7c3aed; /* violet diamant */
}

.adi-heroBg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(900px 500px at 18% 8%, rgba(0,150,136,.12), transparent 60%), radial-gradient(700px 420px at 82% 18%, rgba(124,58,237,.10), transparent 60%), linear-gradient(180deg, #ffffff 0%, #ffffff 40%, rgba(0,150,136,.06) 100%);
}

.adi-wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 26px 18px 64px;
}

.adi-hero {
    padding-top: 54px;
    padding-bottom: 18px;
}

.adi-heroInner {
    text-align: left;
}

.adi-badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,150,136,.22);
    background: rgba(0,150,136,.08);
    color: rgba(7,59,53,.92);
    font-weight: 800;
    font-size: 13px;
}

.adi-badgeOff {
    background: #0b1220;
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 900;
    font-size: 12px;
}

.adi-h1 {
    margin: 14px 0 10px;
    font-size: 46px;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--adi-ink);
}

.adi-accent {
    background: linear-gradient(90deg,var(--adi-teal) 0%,var(--adi-teal-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.adi-sub {
    max-width: 820px;
    color: var(--adi-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 14px;
}

.adi-ctaMain {
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(0,150,136,.28);
    background: linear-gradient(180deg, rgba(0,150,136,.16), rgba(0,150,136,.08));
    color: #073b35;
    box-shadow: 0 10px 26px rgba(0,150,136,.12);
    font-weight: 950;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

    .adi-ctaMain:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 34px rgba(0,150,136,.16);
        filter: saturate(1.06);
    }

.adi-ctaHint {
    font-weight: 800;
    color: rgba(7,59,53,.70);
}

.adi-ctaArrow {
    margin-left: 6px;
    font-weight: 950;
}

.adi-heroNote {
    margin-top: 10px;
    color: rgba(15,23,42,.58);
    font-size: 13.5px;
}

.adi-section {
    margin-top: 26px;
}

.adi-sectionHead h2 {
    margin: 0;
    font-size: 26px;
    color: var(--adi-ink);
}

.adi-muted {
    margin-top: 6px;
    color: var(--adi-muted);
    line-height: 1.55;
}

/* =========================
   PACKS (Fer / Platine / Diamant)
   ✅ mêmes hauteurs / bas alignés
   ✅ hover coloré par offre
   ✅ prix coloré par offre
   ========================= */
.adi-packGrid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
    align-items: stretch; /* important */
}

.adi-pack {
    background: var(--adi-card);
    border: 1px solid var(--adi-line);
    border-radius: var(--adi-radius);
    padding: 16px;
    box-shadow: var(--adi-shadow);
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease, filter .15s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    display: flex; /* pour aligner bas */
    flex-direction: column;
    min-height: 248px; /* ajuste si besoin */
}

    /* Liseré haut coloré selon l’offre */
    .adi-pack::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        height: 4px;
        background: rgba(15,23,42,.08);
    }

    .adi-pack[data-pack="Fer"]::before {
        background: linear-gradient(90deg, rgba(100,116,139,.20), var(--pack-fer), rgba(100,116,139,.20));
    }

    .adi-pack[data-pack="Platine"]::before {
        background: linear-gradient(90deg, rgba(14,165,164,.16), var(--pack-platine), rgba(14,165,164,.16));
    }

    .adi-pack[data-pack="Diamant"]::before {
        background: linear-gradient(90deg, rgba(124,58,237,.16), var(--pack-diamant), rgba(124,58,237,.16));
    }

    /* Hover = bordure + fond très léger dans la teinte */
    .adi-pack:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(2,6,23,.10);
        filter: saturate(1.02);
    }

    .adi-pack[data-pack="Fer"]:hover {
        border-color: rgba(100,116,139,.30);
        background: linear-gradient(180deg, rgba(100,116,139,.06), rgba(255,255,255,.92));
    }

    .adi-pack[data-pack="Platine"]:hover {
        border-color: rgba(14,165,164,.30);
        background: linear-gradient(180deg, rgba(14,165,164,.06), rgba(255,255,255,.92));
    }

    .adi-pack[data-pack="Diamant"]:hover {
        border-color: rgba(124,58,237,.30);
        background: linear-gradient(180deg, rgba(124,58,237,.06), rgba(255,255,255,.92));
    }

    /* Sélection = halo + bordure colorée (plus évident) */
    .adi-pack.is-selected {
        background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
        box-shadow: 0 18px 46px rgba(2,6,23,.12);
    }

        .adi-pack.is-selected[data-pack="Fer"] {
            border-color: rgba(100,116,139,.55);
            box-shadow: 0 18px 46px rgba(100,116,139,.18);
        }

        .adi-pack.is-selected[data-pack="Platine"] {
            border-color: rgba(14,165,164,.55);
            box-shadow: 0 18px 46px rgba(14,165,164,.18);
        }

        .adi-pack.is-selected[data-pack="Diamant"] {
            border-color: rgba(124,58,237,.55);
            box-shadow: 0 18px 46px rgba(124,58,237,.18);
        }

.adi-packTop {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.adi-packEyebrow {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(15,23,42,.62);
}

.adi-pack[data-pack="Fer"] .adi-packEyebrow {
    color: rgba(100,116,139,.95);
}

.adi-pack[data-pack="Platine"] .adi-packEyebrow {
    color: rgba(14,165,164,.98);
}

.adi-pack[data-pack="Diamant"] .adi-packEyebrow {
    color: rgba(124,58,237,.98);
}

.adi-packName {
    font-size: 18px;
    font-weight: 950;
    color: var(--adi-ink);
    margin-top: 4px;
}

.adi-packSub {
    margin-top: 4px;
    font-size: 13px;
    color: rgba(15,23,42,.62);
    font-weight: 700;
    min-height: 34px; /* alignement visuel */
}

.adi-packPriceVal {
    font-size: 22px;
    font-weight: 950;
    text-align: right;
    color: var(--adi-ink);
}

/* ✅ prix coloré selon l’offre */
.adi-pack[data-pack="Fer"] .adi-packPriceVal {
    color: var(--pack-fer);
}

.adi-pack[data-pack="Platine"] .adi-packPriceVal {
    color: var(--pack-platine);
}

.adi-pack[data-pack="Diamant"] .adi-packPriceVal {
    color: var(--pack-diamant);
}

.adi-packPriceNote {
    font-size: 12px;
    color: rgba(15,23,42,.55);
    font-weight: 800;
    text-align: right;
}

.adi-packList {
    margin: 12px 0 0;
    padding-left: 18px;
    color: rgba(15,23,42,.76);
    font-size: 13.2px;
    line-height: 1.5;
    flex: 1; /* pousse l’affordance en bas */
}

.adi-packAffordance {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed rgba(15,23,42,.10);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(15,23,42,.55);
    font-weight: 800;
    font-size: 12.5px;
}

.adi-packDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(15,23,42,.18);
}

.adi-pack[data-pack="Fer"] .adi-packDot {
    background: rgba(100,116,139,.65);
}

.adi-pack[data-pack="Platine"] .adi-packDot {
    background: rgba(14,165,164,.85);
}

.adi-pack[data-pack="Diamant"] .adi-packDot {
    background: rgba(124,58,237,.85);
}

/* =========================
   Builder
   ========================= */
.adi-builder {
    margin-top: 18px;
    padding-top: 8px;
}

.adi-builderGrid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 14px;
    align-items: start;
}

.adi-sideCard {
    position: sticky;
    top: 88px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--adi-line);
    border-radius: var(--adi-radius);
    padding: 16px;
    box-shadow: var(--adi-shadow);
}

.adi-miniProfile {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.86);
}

.adi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(0,150,136,.22);
}

.adi-name {
    font-weight: 950;
    color: var(--adi-ink);
}

.adi-role {
    font-weight: 800;
    color: rgba(15,23,42,.60);
    font-size: 12.5px;
    margin-top: 2px;
}

.adi-miniText {
    color: rgba(15,23,42,.62);
    font-size: 12.5px;
    margin-top: 4px;
}

.adi-ctaSide {
    margin-top: 12px;
    display: block;
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(180deg,var(--adi-teal-2),var(--adi-teal));
    box-shadow: 0 16px 30px rgba(0,150,136,.20);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

    .adi-ctaSide:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 38px rgba(0,150,136,.24);
        filter: saturate(1.05);
    }

.adi-sideFoot {
    margin-top: 8px;
    text-align: center;
    color: rgba(15,23,42,.58);
    font-size: 12.5px;
}

.adi-mainCard {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--adi-line);
    border-radius: var(--adi-radius);
    padding: 16px;
    box-shadow: var(--adi-shadow);
}

/* =========================
   Offre sélectionnée
   ✅ retire la barre à gauche (illisible/superposition)
   ✅ prix coloré selon l’offre
   ========================= */
.adi-currentOffer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.10);
    background: linear-gradient(180deg, rgba(15,23,42,.02), rgba(255,255,255,.92));
    position: relative;
}

    /* ✅ on supprime la barre */
    .adi-currentOffer::before {
        content: none !important;
        display: none !important;
    }

    /* Bordure un peu teintée selon pack */
    .adi-currentOffer[data-pack="Fer"] {
        border-color: rgba(100,116,139,.22);
    }

    .adi-currentOffer[data-pack="Platine"] {
        border-color: rgba(14,165,164,.22);
    }

    .adi-currentOffer[data-pack="Diamant"] {
        border-color: rgba(124,58,237,.22);
    }

.adi-label {
    font-size: 12px;
    font-weight: 900;
    color: rgba(15,23,42,.55);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.adi-offerTitle {
    margin-top: 2px;
    font-weight: 950;
    font-size: 18px;
    color: var(--adi-ink);
}

.adi-priceBig {
    text-align: right;
}

.adi-priceValue {
    font-size: 30px;
    font-weight: 980;
    color: var(--adi-ink);
    line-height: 1;
}

/* ✅ prix coloré selon l’offre */
.adi-currentOffer[data-pack="Fer"] .adi-priceValue {
    color: var(--pack-fer);
}

.adi-currentOffer[data-pack="Platine"] .adi-priceValue {
    color: var(--pack-platine);
}

.adi-currentOffer[data-pack="Diamant"] .adi-priceValue {
    color: var(--pack-diamant);
}

.adi-priceNote {
    margin-top: 3px;
    font-size: 12px;
    color: rgba(15,23,42,.55);
    font-weight: 800;
}

.adi-included {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.86);
    position: relative;
}

    .adi-included::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 12px;
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: rgba(15,23,42,.12);
    }

    .adi-included[data-pack="Fer"]::before {
        background: rgba(100,116,139,.60);
    }

    .adi-included[data-pack="Platine"]::before {
        background: rgba(14,165,164,.80);
    }

    .adi-included[data-pack="Diamant"]::before {
        background: rgba(124,58,237,.80);
    }

.adi-includedTitle {
    font-weight: 950;
    color: var(--adi-ink);
    margin-bottom: 6px;
    padding-left: 16px;
}

.adi-includedList {
    margin: 0;
    padding-left: 34px;
    color: rgba(15,23,42,.72);
    font-size: 13px;
    line-height: 1.5;
}

.adi-modHeader {
    margin-top: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.adi-modHint {
    color: rgba(15,23,42,.55);
    font-weight: 700;
    font-size: 12.5px;
    text-align: right;
}

.adi-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.12);
    background: rgba(15,23,42,.04);
    font-weight: 900;
    color: rgba(15,23,42,.72);
    font-size: 12.5px;
}

    .adi-pill[data-pack="Fer"] {
        border-color: rgba(100,116,139,.26);
        background: rgba(100,116,139,.08);
        color: rgba(100,116,139,.92);
    }

    .adi-pill[data-pack="Platine"] {
        border-color: rgba(14,165,164,.22);
        background: rgba(14,165,164,.08);
        color: rgba(7,59,53,.92);
    }

    .adi-pill[data-pack="Diamant"] {
        border-color: rgba(124,58,237,.22);
        background: rgba(124,58,237,.08);
        color: rgba(124,58,237,.95);
    }

.adi-modulesTitle {
    margin-top: 10px;
    font-weight: 950;
    color: var(--adi-ink);
}

/* =========================
   Modules list
   ✅ hover aligné
   ✅ sélection via .is-selected (comme ton code actuel)
   ========================= */
.adi-moduleList {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.adi-moduleItem {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.92);
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}

    .adi-moduleItem:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(2,6,23,.07);
    }

.adi-moduleCb {
    display: none;
}

.adi-moduleBox {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,.18);
    margin-top: 2px;
    position: relative;
}

/* Default selected */
.adi-moduleItem.is-selected .adi-moduleBox {
    border-color: rgba(15,23,42,.20);
    box-shadow: 0 0 0 4px rgba(15,23,42,.06);
    background: rgba(15,23,42,.03);
}

/* Pack selected */
.adi-moduleItem.is-selected[data-pack="Fer"] .adi-moduleBox {
    border-color: rgba(100,116,139,.60);
    box-shadow: 0 0 0 4px rgba(100,116,139,.12);
    background: rgba(100,116,139,.08);
}

.adi-moduleItem.is-selected[data-pack="Platine"] .adi-moduleBox {
    border-color: rgba(14,165,164,.70);
    box-shadow: 0 0 0 4px rgba(14,165,164,.12);
    background: rgba(14,165,164,.08);
}

.adi-moduleItem.is-selected[data-pack="Diamant"] .adi-moduleBox {
    border-color: rgba(124,58,237,.70);
    box-shadow: 0 0 0 4px rgba(124,58,237,.12);
    background: rgba(124,58,237,.08);
}

.adi-moduleItem.is-selected .adi-moduleBox::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border-right: 2px solid rgba(15,23,42,.75);
    border-bottom: 2px solid rgba(15,23,42,.75);
    transform: rotate(40deg);
}

.adi-moduleItem.is-selected[data-pack="Fer"] .adi-moduleBox::after {
    border-color: rgba(100,116,139,.95);
}

.adi-moduleItem.is-selected[data-pack="Platine"] .adi-moduleBox::after {
    border-color: rgba(14,165,164,.98);
}

.adi-moduleItem.is-selected[data-pack="Diamant"] .adi-moduleBox::after {
    border-color: rgba(124,58,237,.98);
}

.adi-moduleLine1 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.adi-moduleName {
    font-weight: 950;
    font-size: 14px;
    color: var(--adi-ink);
}

.adi-modulePrice {
    font-weight: 980;
    white-space: nowrap;
    color: rgba(15,23,42,.85);
}

.adi-moduleDesc {
    display: block;
    margin-top: 4px;
    color: rgba(15,23,42,.62);
    font-size: 12.5px;
    line-height: 1.45;
}

/* =========================
   Checkout
   ✅ retire la barre (même souci que currentOffer)
   ✅ total coloré selon l’offre
   ========================= */
.adi-checkout {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    background: linear-gradient(180deg, rgba(15,23,42,.02), rgba(255,255,255,.92));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    position: relative;
}

    /* ✅ supprime la barre */
    .adi-checkout::before {
        content: none !important;
        display: none !important;
    }

.adi-checkoutTitle {
    font-weight: 980;
    color: var(--adi-ink);
}

.adi-checkoutMeta {
    margin-top: 3px;
    color: rgba(15,23,42,.58);
    font-weight: 800;
    font-size: 12.5px;
}

.adi-total {
    font-size: 36px;
    font-weight: 980;
    color: var(--adi-ink);
    line-height: 1;
    text-align: right;
}

/* ✅ total coloré selon l’offre */
.adi-checkout[data-pack="Fer"] .adi-total {
    color: var(--pack-fer);
}

.adi-checkout[data-pack="Platine"] .adi-total {
    color: var(--pack-platine);
}

.adi-checkout[data-pack="Diamant"] .adi-total {
    color: var(--pack-diamant);
}

.adi-from {
    margin-top: 4px;
    text-align: right;
    color: rgba(15,23,42,.55);
    font-weight: 900;
    font-size: 12px;
}

.adi-validateBtn {
    margin-top: 12px;
    width: 100%;
    padding: 14px 14px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 980;
    color: #fff;
    background: linear-gradient(180deg,var(--adi-teal-2),var(--adi-teal));
    box-shadow: 0 18px 30px rgba(0,150,136,.20);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

    .adi-validateBtn:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 38px rgba(0,150,136,.24);
        filter: saturate(1.06);
    }

.adi-nextStep {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.80);
    color: rgba(15,23,42,.70);
    font-weight: 800;
    font-size: 13px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
    .adi-h1 {
        font-size: 30px;
    }

    .adi-packGrid {
        grid-template-columns: 1fr;
    }

    .adi-pack {
        min-height: unset;
    }

    .adi-builderGrid {
        grid-template-columns: 1fr;
    }

    .adi-sideCard {
        position: relative;
        top: auto;
    }

    .adi-modHeader {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .adi-modHint {
        text-align: left;
    }

    .adi-ctaMain {
        width: 100%;
        justify-content: space-between;
    }
}
/* show/hide with nice transition */
.adi-isHidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    height: 0;
    overflow: hidden;
    transition: opacity .25s ease, transform .25s ease;
}

.adi-isShown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    height: auto;
    overflow: visible;
    transition: opacity .25s ease, transform .25s ease;
}

/* lead layout */
.adi-leadGrid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: start;
}

@media (max-width: 900px) {
    .adi-leadGrid {
        grid-template-columns: 1fr;
    }
}

.adi-overline {
    color: #888;
    letter-spacing: .08em;
    font-size: .9rem;
    margin-bottom: 6px;
}

.adi-contactTitle {
    font-weight: 300;
    margin: 0 0 6px 0;
}

/* recap card */
.adi-recapCard {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--pack-soft), rgba(255,255,255,1));
    padding: 18px;
}

.adi-recapTop {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.adi-recapTitle {
    font-size: 1.35rem;
    font-weight: 700;
}

.adi-recapBlock {
    margin-top: 14px;
}

.adi-recapSub {
    font-weight: 700;
    margin-bottom: 8px;
}

.adi-recapList {
    margin: 0;
    padding-left: 18px;
}

.adi-recapModuleLine {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.adi-recapTotalRow {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,.06);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.adi-backBtn {
    margin-top: 14px;
    width: 100%;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .adi-backBtn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

/* form card + phone line */
.adi-formCard {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 18px;
    background: #fff;
}

.adi-phoneLine {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.adi-phoneCc {
    flex: 0 0 140px;
}

.adi-phoneLocal {
    flex: 1 1 auto;
}

.adi-sendBtn {
    width: 100%;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    font-weight: 800 !important;
    letter-spacing: .02em;
}

/* confirmation */
.adi-confirmWrap {
    text-align: center;
    padding: 24px 10px;
}

.adi-successCircle {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,150,136,.12);
    border: 1px solid rgba(0,150,136,.25);
}

.adi-checkmark {
    font-size: 22px;
}
/* swap zone inside the same card */
.adi-swapZone {
    margin-top: 12px;
}

/* fade + slide transition (clean) */
.adi-step {
    transition: opacity .28s ease, transform .28s ease;
    will-change: opacity, transform;
}

.adi-stepHidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
}

.adi-stepShown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

/* Make the container able to host absolute hidden step without collapsing weirdly */
.adi-swapZone {
    position: relative;
}

/* recap inline (integrated look) */
.adi-recapInline {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    background: linear-gradient(180deg, var(--pack-soft), #fff);
    padding: 14px;
    margin-bottom: 14px;
}

.adi-recapInlineTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.adi-pillStrong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.035);
    border: 1px solid rgba(0,0,0,.08);
    font-weight: 700;
}

.adi-recapInlineList {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adi-recapInlineRow {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.7);
}

.adi-recapInlineName {
    font-weight: 600;
}

.adi-recapInlinePrice {
    font-weight: 800;
}

.adi-formInline {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 14px;
    background: #fff;
}

/* phone line */
.adi-phoneLine {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.adi-phoneCc {
    flex: 0 0 140px;
}

.adi-phoneLocal {
    flex: 1 1 auto;
}

/* buttons */
.adi-sendBtn {
    width: 100%;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    font-weight: 800 !important;
    letter-spacing: .02em;
}

.adi-backBtn {
    margin-top: 12px;
    width: 100%;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .adi-backBtn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

/* confirmation */
.adi-confirmWrap {
    text-align: center;
    padding: 18px 8px;
}

.adi-successCircle {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,150,136,.12);
    border: 1px solid rgba(0,150,136,.25);
}

.adi-checkmark {
    font-size: 22px;
}
