/* ==========================================================================
   gtsites.fr — surcouche du thème Orisa (Home 4 « AI & Technology Agency »)
   Toutes les personnalisations propres au site sont regroupées ici afin de
   pouvoir mettre à jour main.css (Orisa) sans perdre les réglages.
   ========================================================================== */

:root {
    --gt-violet: #a020f0;
    --gt-cyan: #00ffd1;
    --gt-blue: #3b82f6;
    --gt-ink: #07080f;
    --gt-card-border: rgba(255, 255, 255, 0.08);
    --gt-card-border-hover: rgba(255, 255, 255, 0.2);
    --gt-text-soft: rgba(255, 255, 255, 0.72);
    --gt-gradient: linear-gradient(90deg, #a020f0 0%, #00ffd1 100%);
}

/* ---------- Logo : on garde les couleurs d'origine (pas d'inversion en mode sombre) ---------- */
.gt-logo img,
[data-bs-theme=dark] .at-header-logo.gt-logo img,
[data-bs-theme=dark] .at-offcanvas-logo.gt-logo img {
    filter: none !important;
    height: 42px;
    width: auto;
}

/* ---------- Fonds « techno » des bandeaux (remplacent les photos de la démo) ---------- */
.gt-hero-bg {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(55% 75% at 88% 18%, rgba(0, 255, 209, 0.16) 0%, rgba(0, 255, 209, 0) 60%),
        radial-gradient(50% 70% at 8% 95%, rgba(160, 32, 240, 0.32) 0%, rgba(160, 32, 240, 0) 62%),
        radial-gradient(40% 50% at 55% 55%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 70%),
        linear-gradient(135deg, #0b0c1c 0%, #0e1030 45%, #06060b 100%);
}
.gt-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse at 70% 35%, #000 0%, rgba(0, 0, 0, 0.6) 35%, transparent 72%);
    mask-image: radial-gradient(ellipse at 70% 35%, #000 0%, rgba(0, 0, 0, 0.6) 35%, transparent 72%);
}

/* ---------- Animation douce des visuels ---------- */
.gt-float {
    animation: gtFloat 7s ease-in-out infinite;
    will-change: transform;
}
@keyframes gtFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -14px, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .gt-float { animation: none; }
}

/* ---------- Bandeau de la page d'accueil ---------- */
.gt-home-hero .sec-1-home-4 {
    padding-top: 80px;
    padding-bottom: 0;
}
.gt-home-hero .sec-1-home-4__tagline { margin-bottom: 10px; }
.gt-hero-title {
    font-size: clamp(40px, 5.6vw, 88px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 700;
}
.gt-hero-visual {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.gt-hero-visual::before {
    content: "";
    position: absolute;
    inset: 12%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 209, 0.32) 0%, rgba(160, 32, 240, 0.24) 45%, transparent 70%);
    filter: blur(40px);
}
.gt-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
}
.gt-hero-footer { margin-top: 70px; }
.gt-hero-brand {
    font-weight: 700;
    font-size: clamp(64px, 15vw, 220px);
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff 0%, #d9dcff 45%, #7ef9e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    user-select: none;
}

/* ---------- Bandeau générique des pages internes ---------- */
.gt-page-hero-wrap .gt-page-hero {
    padding-top: 90px;
    padding-bottom: 90px;
}
.gt-page-hero__title {
    font-size: clamp(34px, 4.8vw, 72px);
    line-height: 1.03;
    letter-spacing: -0.035em;
    font-weight: 700;
}
.gt-page-hero__visual {
    position: relative;
    text-align: center;
}
.gt-page-hero__visual::before {
    content: "";
    position: absolute;
    inset: 10%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 209, 0.28) 0%, rgba(160, 32, 240, 0.22) 45%, transparent 70%);
    filter: blur(40px);
}
.gt-page-hero__visual img {
    max-width: 100%;
    max-height: 420px;
    height: auto;
}

/* ---------- Titres et textes ---------- */
.gt-h2 {
    font-size: clamp(30px, 3.4vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.03em;
}
.gt-lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--gt-text-soft);
}
.gt-lead strong { color: #fff; font-weight: 600; }
.gt-lead a:not([class]),
.gt-prose a:not([class]) {
    color: #7ef9e6;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gt-lead a:not([class]):hover,
.gt-prose a:not([class]):hover { color: #fff; }

/* ---------- Cartes ---------- */
.gt-card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 24px;
    background: var(--at-neutral-0);
    border: 1px solid var(--gt-card-border);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.45s ease, box-shadow 0.45s ease;
}
.gt-card:hover {
    transform: translateY(-4px);
    border-color: var(--gt-card-border-hover);
    box-shadow: 0 20px 60px -30px rgba(0, 255, 209, 0.25);
}
.gt-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gt-card-border);
}
.gt-card__icon img {
    max-width: 56px;
    max-height: 56px;
    object-fit: contain;
}
.gt-card__title { margin: 28px 0 0; }
.gt-card--media {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 300px;
    padding: 48px;
    border: 0;
}
.gt-card--media .gt-card__title {
    font-size: clamp(26px, 2.2vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.gt-card--media .gt-card__body { flex: 1 1 55%; }
.gt-card--media .gt-card__title { margin: 0 0 16px; }
.gt-card--media .gt-card__media {
    flex: 0 0 40%;
    text-align: center;
}
.gt-card--media .gt-card__media img {
    width: 100%;
    max-height: 230px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gt-card--media:hover .gt-card__media img { transform: scale(1.05) rotate(-1deg); }
.gt-card--gradient-1 { background: linear-gradient(135deg, #3a1a8c 0%, #1f3bb3 55%, #0b6aa3 100%); }
.gt-card--gradient-2 { background: linear-gradient(135deg, #0c6b64 0%, #0d9488 45%, #1e40af 100%); }
@media (max-width: 767px) {
    .gt-card { padding: 28px; }
    .gt-card--media { flex-direction: column; align-items: flex-start; padding: 32px; }
    .gt-card--media .gt-card__media { width: 100%; }
}

/* ---------- Panneaux et médias ---------- */
.gt-panel { position: relative; }
.gt-media-frame {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(160, 32, 240, 0.22) 0%, rgba(0, 255, 209, 0.08) 40%, transparent 70%);
}
.gt-media-frame img {
    max-width: 100%;
    height: auto;
}

/* ---------- Bande des technologies ---------- */
.gt-logos .at-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.gt-logos .at-marquee__track {
    display: flex;
    width: max-content;
}
.gt-logos .at-marquee__group {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}
.gt-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 100px;
    padding: 14px 22px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
}
.gt-logo-item img {
    width: auto;
    height: auto;
    max-width: 130px;
    max-height: 64px;
    object-fit: contain;
}

/* ---------- Menu ---------- */
.at-main-menu nav > ul > li.gt-current > a { color: var(--at-common-black); }
.at-main-menu nav > ul > li.gt-current > a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 5px;
    height: 5px;
    margin-left: -2.5px;
    border-radius: 50%;
    background: var(--gt-cyan);
}

/* ---------- Pied de page (sobre) ---------- */
.gt-footer { padding-bottom: 12px; }
.gt-footer__panel {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    background:
        radial-gradient(45% 60% at 0% 0%, rgba(160, 32, 240, 0.12) 0%, transparent 70%),
        radial-gradient(40% 55% at 100% 100%, rgba(0, 255, 209, 0.08) 0%, transparent 70%),
        #0c0c0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.gt-footer__panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 32, 240, 0.7), rgba(0, 255, 209, 0.7), transparent);
}
.gt-footer__main { padding-bottom: 60px; }
.gt-footer__logo { margin-bottom: 22px; }
.gt-footer__about {
    max-width: 380px;
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}
.gt-footer__label,
.gt-footer__title {
    display: block;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.gt-footer__contact { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.at-btn.gt-btn-sm { padding: 12px 20px; font-size: 14px; }
.gt-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.gt-footer__phone i { color: #7ef9e6; }
.gt-footer__phone:hover { color: #fff; border-color: rgba(0, 255, 209, 0.5); background: rgba(0, 255, 209, 0.06); }
.gt-footer-links ul { list-style: none; margin: 0; padding: 0; }
.gt-footer-links li + li { margin-top: 11px; }
.gt-footer-links a {
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s ease;
}
.gt-footer-links a:hover { color: #7ef9e6; }
.gt-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gt-footer__copyright { margin: 0; font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.gt-footer__copyright a { color: rgba(255, 255, 255, 0.85); text-decoration: underline; text-underline-offset: 3px; }
.gt-footer__copyright a:hover { color: #7ef9e6; }
.gt-footer__social { display: flex; gap: 10px; }
.gt-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.gt-footer__social a:hover { color: #0b0b12; background: #7ef9e6; border-color: #7ef9e6; }
@media (max-width: 767px) {
    .gt-footer__panel { padding-top: 56px; }
    .gt-footer__main { padding-bottom: 40px; }
}

/* ---------- Boutons : pas de majuscules forcées (textes en français) ---------- */
.at-btn { text-transform: none; }
.sec-1-home-4-wrap .sec-1-home-4__btns .at-btn { font-size: 14px; padding: 15px 26px; }

/* ---------- Fil d'Ariane (bandeaux) ---------- */
/* éléments en ligne : sur mobile, un titre long passe à la ligne et le « ] » suit le dernier mot */
.gt-breadcrumb ul {
    display: block;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.gt-breadcrumb li { display: inline; }
.gt-breadcrumb li + li { margin-left: 8px; }
.gt-breadcrumb ul::before { content: "["; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.gt-breadcrumb ul::after { content: "]"; margin-left: 8px; color: rgba(255, 255, 255, 0.6); }
.gt-breadcrumb a { color: #fff; }
.gt-breadcrumb a:hover { color: var(--gt-cyan); }

/* ---------- Liste « + » des bandeaux ---------- */
.gt-plan-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.gt-plan-list li a,
.gt-plan-list li {
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.86);
}
.gt-plan-list li a:hover { color: #fff; }
/* « + » d'origine remplacé par l'icône du thème */
.gt-plus-list > li { position: relative; padding-left: 28px; }
.gt-plus-list > li::before {
    content: "\2b";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    color: #7ef9e6;
}

/* ---------- Visuel principal + éléments flottants ---------- */
.gt-banner-cluster { position: relative; }
.gt-banner-cluster .gt-banner-main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    height: auto;
}
.gt-banner-out {
    position: absolute;
    z-index: 2;
    width: 22%;
    height: auto;
    animation: gtFloat 6s ease-in-out infinite;
}
.gt-banner-out-1 { top: 2%; left: 0; animation-delay: -1s; }
.gt-banner-out-2 { top: 8%; right: 0; animation-delay: -2.5s; }
.gt-banner-out-3 { bottom: 6%; left: 4%; animation-delay: -4s; }
.gt-banner-out-4 { bottom: 0; right: 6%; animation-delay: -5.5s; }
@media (prefers-reduced-motion: reduce) { .gt-banner-out { animation: none; } }

/* ---------- Onglets de prestations ---------- */
.gt-tabs-nav { gap: 6px; }
.gt-tab-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 20px 22px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.gt-tab-btn .gt-tab-num { font-size: 14px; color: rgba(255, 255, 255, 0.4); }
.gt-tab-btn .gt-tab-arrow { margin-left: auto; opacity: 0; transform: translate(-6px, 6px); transition: 0.3s ease; }
.gt-tab-btn:hover { color: #fff; }
.gt-tab-btn.active {
    color: #fff;
    background: var(--at-neutral-0);
    border-color: var(--gt-card-border);
}
.gt-tab-btn.active .gt-tab-num { color: var(--gt-cyan); }
.gt-tab-btn.active .gt-tab-arrow { opacity: 1; transform: none; }
.gt-tab-panel { padding: 40px; }
.gt-tab-panel img { max-width: 100%; max-height: 280px; object-fit: contain; }

/* ---------- Bandeau d'appel à l'action ---------- */
.gt-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 90px 0;
    background:
        radial-gradient(60% 90% at 90% 10%, rgba(0, 255, 209, 0.22) 0%, transparent 60%),
        radial-gradient(60% 90% at 0% 100%, rgba(160, 32, 240, 0.45) 0%, transparent 60%),
        linear-gradient(120deg, #150b33 0%, #10174a 50%, #071a2c 100%);
}


/* ==========================================================================
   Pages de contenu (prestations, villes...) — composants communs
   ========================================================================== */

/* ---------- Sections ---------- */
.gt-block {
    position: relative;
    padding: 60px 0;
}
main > .gt-fullbleed + .gt-block { padding-top: 110px; }
main > .gt-block:last-child { padding-bottom: 120px; }
.gt-block--panel {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 100px 0;
    border-radius: 30px;
    background: var(--at-neutral-0);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
main > .gt-block--panel:last-child { margin-bottom: 0; padding-bottom: 100px; }
.gt-block--cta { padding: 40px 0; }
@media (max-width: 991px) {
    .gt-block { padding: 45px 0; }
    main > .gt-fullbleed + .gt-block { padding-top: 80px; }
    .gt-block--panel { padding: 70px 0; margin-top: 35px; margin-bottom: 35px; border-radius: 22px; }
}
@media (max-width: 575px) {
    .gt-block--panel { padding: 56px 0; }
}

/* ---------- Titres de section ---------- */
.gt-section-title {
    max-width: 900px;
    margin-bottom: 50px;
}
.gt-section-title::before {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin-bottom: 26px;
    border-radius: 3px;
    background: var(--gt-gradient);
}
.gt-section-title .gt-h2,
.gt-section-title h2,
.gt-section-title h3 {
    font-size: clamp(30px, 3.4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}
.gt-section-title h2:last-child,
.gt-section-title h3:last-child { margin-bottom: 0; }
.gt-section-title p,
.gt-section-title .gt-lead {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    color: var(--gt-text-soft);
    margin-bottom: 14px;
}
.gt-section-title p:last-child { margin-bottom: 0; }
.gt-section-title > * { position: relative; }
.gt-section-title .gt-section-title { margin-bottom: 18px; }
.gt-section-title .gt-section-title::before { display: none; }
.gt-h2 span,
.gt-section-title h2 span,
.gt-page-hero__title span {
    background: linear-gradient(90deg, #c084fc 0%, #7ef9e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-center > .gt-section-title,
.gt-section-title.text-center { margin-left: auto; margin-right: auto; text-align: center; }
.text-center > .gt-section-title::before,
.gt-section-title.text-center::before { margin-left: auto; margin-right: auto; }
.text-center > .gt-section-title p,
.gt-section-title.text-center p { margin-left: auto; margin-right: auto; }

/* ---------- Texte courant ---------- */
.gt-prose p,
.gt-block p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.005em;
    color: var(--gt-text-soft);
}
.gt-prose strong,
.gt-block strong { color: #fff; font-weight: 600; }
.gt-block a:not([class]) {
    color: #7ef9e6;
    text-decoration: underline;
    text-decoration-color: rgba(126, 249, 230, 0.4);
    text-underline-offset: 3px;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
.gt-block a:not([class]):hover { color: #fff; text-decoration-color: #fff; }
.gt-block .text-success { color: #34d399 !important; }
.gt-block .text-danger { color: #fb7185 !important; }
.gt-block .text-primary { color: #7ef9e6 !important; }
.gt-muted { color: rgba(255, 255, 255, 0.55) !important; }
.gt-block ul:not([class]),
.gt-block ol:not([class]) {
    margin: 0 0 16px;
    padding-left: 20px;
    color: var(--gt-text-soft);
    line-height: 1.7;
}
.gt-block ul:not([class]) { list-style: disc; }
.gt-block ol:not([class]) { list-style: decimal; }
.gt-block ul:not([class]) li::marker { color: var(--gt-cyan); }
.gt-block h2:not([class]),
.gt-block h3:not([class]) {
    font-size: clamp(24px, 2.2vw, 32px);
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}
.gt-block h4:not([class]),
.gt-block h5:not([class]) {
    font-size: 20px;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 12px;
}

/* ---------- Cartes (surcouche pages de contenu) ---------- */
.gt-card { padding: 36px; }
.gt-block--panel .gt-card,
.gt-block--panel .at-faq-item { background: #151515; }
.gt-card > :last-child { margin-bottom: 0; }
.gt-card__title,
.gt-card .gt-card__title {
    font-size: 22px;
    line-height: 1.28;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}
h4.gt-card__title,
h5.gt-card__title,
p.gt-card__title { font-size: 19px; }
.gt-card__title .gt-icon { margin-right: 10px; color: var(--gt-cyan); }
.gt-card__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}
.gt-card__head .gt-card__title,
.gt-card__head h3,
.gt-card__head h4 { margin-bottom: 0; }
.gt-card__icon--fa {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    margin-bottom: 26px;
    border-radius: 18px;
    font-size: 26px;
    color: #7ef9e6;
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.28) 0%, rgba(0, 255, 209, 0.10) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.gt-card__head .gt-card__icon--fa { margin-bottom: 0; }
.gt-card__icon--fa .gt-icon,
.gt-card__icon--fa i { font-size: 26px; line-height: 1; color: inherit; }
.gt-card--feature { display: flex; flex-direction: column; }
.gt-card--soft {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.09);
}
.gt-card--accent {
    background:
        linear-gradient(var(--at-neutral-0), var(--at-neutral-0)) padding-box,
        linear-gradient(135deg, rgba(160, 32, 240, 0.9), rgba(0, 255, 209, 0.7)) border-box;
    border: 1px solid transparent;
}
.gt-card--pricing {
    display: flex;
    flex-direction: column;
}

.gt-card--step { padding-top: 30px; }
.gt-card .gt-subcard {
    margin-top: 18px;
    padding: 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.gt-card .gt-subcard > :last-child { margin-bottom: 0; }
.gt-card__body > :last-child { margin-bottom: 0; }
.gt-card .table-responsive { margin-bottom: 0; }

/* Badges, prix, numéros d'étape */
.gt-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0b0b12;
    background: var(--gt-gradient);
}
.gt-price {
    display: block;
    margin: 6px 0 18px;
    font-size: clamp(30px, 2.6vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff 0%, #7ef9e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.gt-price * { color: inherit; -webkit-text-fill-color: transparent; }
.gt-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #0b0b12;
    background: var(--gt-gradient);
}

/* Liste à puces "check" */
.gt-check-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 11px;
}
.gt-check-list > li {
    position: relative;
    padding-left: 32px;
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
}
.gt-check-list > li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 10px;
    color: #7ef9e6;
    background: rgba(0, 255, 209, 0.12);
}
.gt-check-list > li a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.3); text-underline-offset: 3px; }
.gt-check-list > li a:hover { color: #7ef9e6; }
/* listes « • … » des réponses de FAQ et des encadrés */
.gt-check-list--prose { margin: 14px 0 18px; }
.gt-check-list--prose:last-child { margin-bottom: 0; }

/* Liste à flèches (anciennes puces « → ») */
.gt-arrow-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 11px;
}
.gt-arrow-list > li {
    position: relative;
    padding-left: 30px;
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
}
.gt-arrow-list > li::before {
    content: "\f061";
    position: absolute;
    left: 2px;
    top: 0;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 15px;
    color: #7ef9e6;
    transition: transform 0.25s ease;
}
.gt-arrow-list > li:hover::before { transform: translateX(3px); }
.gt-arrow-list > li a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.3); text-underline-offset: 3px; }
.gt-arrow-list > li a:hover { color: #7ef9e6; }

/* Icônes dans le texte et les titres (remplacent les anciens emojis) */
.gt-inline-icon {
    display: inline-block;
    margin-right: 0.45em;
    font-size: 0.92em;
    line-height: 1;
    color: #7ef9e6;
}
.gt-title-icon {
    margin-left: 0.18em;
    font-size: 0.8em;
    color: #7ef9e6;
}

/* Grilles simples */
.gt-grid { display: grid; gap: 24px; }
.gt-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gt-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gt-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 991px) {
    .gt-grid--3, .gt-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .gt-grid--2, .gt-grid--3, .gt-grid--4 { grid-template-columns: minmax(0, 1fr); }
    .gt-card { padding: 28px 24px; }
}

/* ---------- Vignettes rondes (avantages) ---------- */
.gt-card--thumb { text-align: left; }
.gt-thumb { margin-bottom: 24px; }
.gt-thumb__inner {
    width: 88px;
    height: 88px;
    padding: 3px;
    border-radius: 50%;
    background: var(--gt-gradient);
}
.gt-thumb__inner img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #111;
}
.gt-card__title--p { margin-bottom: 10px; }

/* ---------- Liste de liens (barre latérale) ---------- */
.gt-list-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 0;
    border-radius: 0;
}
.gt-list-group .list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.gt-list-group a.list-group-item:hover {
    background: rgba(0, 255, 209, 0.08);
    border-color: rgba(0, 255, 209, 0.35) !important;
    transform: translateX(4px);
}
.gt-list-arrow { font-size: 14px; color: #7ef9e6; transition: transform 0.3s ease; }
.gt-list-group a.list-group-item:hover .gt-list-arrow { transform: translateX(3px); }
.gt-block .list-unstyled { list-style: none; padding-left: 0; margin: 0; display: grid; gap: 8px; }
.gt-block .list-unstyled li { color: rgba(255, 255, 255, 0.8); font-size: 15.5px; line-height: 1.5; }

/* ---------- Encadré d'information ---------- */
.gt-alert {
    position: relative;
    margin: 0;
    padding: 26px 28px 26px 30px;
    border: 1px solid rgba(0, 255, 209, 0.25);
    border-radius: 20px;
    color: var(--gt-text-soft);
    background: linear-gradient(135deg, rgba(0, 255, 209, 0.08) 0%, rgba(160, 32, 240, 0.08) 100%);
}
.gt-alert::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 22px;
    bottom: 22px;
    width: 3px;
    border-radius: 3px;
    background: var(--gt-gradient);
}
.gt-alert p:last-child { margin-bottom: 0; }
.gt-alert a { color: #7ef9e6; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.gt-block .alert-warning.gt-alert { border-color: rgba(251, 191, 36, 0.35); background: rgba(251, 191, 36, 0.07); }
.gt-block .alert-success.gt-alert { border-color: rgba(52, 211, 153, 0.35); background: rgba(52, 211, 153, 0.07); }

/* ---------- Carte d'appel à l'action (barre latérale) ---------- */
.gt-card--cta {
    border: 0;
    background:
        radial-gradient(90% 120% at 100% 0%, rgba(0, 255, 209, 0.22) 0%, transparent 60%),
        radial-gradient(90% 120% at 0% 100%, rgba(160, 32, 240, 0.45) 0%, transparent 60%),
        linear-gradient(135deg, #1b0f3d 0%, #10174a 60%, #07202c 100%);
}
.gt-card--cta .at-btn { margin-top: 10px; }
.gt-card--cta .at-btn.w-100 { justify-content: center; }

/* ---------- Tableaux ---------- */
.gt-table-wrap { border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.08); }
.gt-table {
    --bs-table-bg: transparent;
    margin: 0;
    color: var(--gt-text-soft);
    font-size: 15px;
}
.gt-table > :not(caption) > * > * {
    padding: 14px 18px;
    border-bottom-color: rgba(255, 255, 255, 0.07);
    background: transparent;
    color: inherit;
}
.gt-table thead th { color: #fff; font-weight: 600; background: rgba(255, 255, 255, 0.04); }
.gt-table tbody tr:last-child > * { border-bottom: 0; }

/* ---------- Bloc CTA intégré dans une section ---------- */
.gt-cta-panel {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    margin: 10px 0;
    padding: 50px 56px;
    border-radius: 28px;
    background:
        radial-gradient(60% 90% at 95% 10%, rgba(0, 255, 209, 0.22) 0%, transparent 60%),
        radial-gradient(60% 90% at 0% 100%, rgba(160, 32, 240, 0.5) 0%, transparent 62%),
        linear-gradient(120deg, #150b33 0%, #10174a 55%, #071a2c 100%);
}
.gt-cta-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 70%);
    mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 70%);
}
.gt-cta-panel .row { align-items: center; }
.gt-cta-panel__title,
.gt-cta-panel h2,
.gt-cta-panel h3 {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #fff;
}
.gt-cta-panel h3 a { color: #7ef9e6; text-decoration: underline; text-underline-offset: 4px; }
.gt-cta-panel p { margin: 12px 0 0; }
.gt-cta-panel__flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 40px;
}
.gt-cta-panel__flex > div { flex: 1 1 420px; }
.gt-eyebrow-text,
.gt-cta-panel .call-to-action-area-content > span:first-child {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7ef9e6;
}
.call-to-action-btn,
.gt-cta-panel .col-md-4 { display: flex; justify-content: flex-end; }
@media (max-width: 767px) {
    .gt-cta-panel { padding: 36px 26px; border-radius: 22px; }
    .call-to-action-btn,
    .gt-cta-panel .col-md-4 { justify-content: flex-start; margin-top: 18px; }
}

/* Boutons clairs (sur fonds colorés) */
.at-btn.gt-btn-light {
    color: #0b0b12;
    background: #fff;
}
.at-btn.gt-btn-light:hover { color: #0b0b12; }
.at-btn.gt-btn-light i svg,
.at-btn.gt-btn-light i svg path { stroke: #0b0b12; }

/* Grand bandeau CTA (ancien "register-area") */
.gt-cta .gt-cta__title,
.gt-block .gt-cta__title {
    font-size: clamp(24px, 2.6vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 700;
}

/* ---------- Villes (liens de maillage) ---------- */
.gt-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}
.gt-city-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px 12px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.gt-city-link:hover {
    background: rgba(0, 255, 209, 0.07);
    border-color: rgba(0, 255, 209, 0.35);
    transform: translateY(-2px);
}
.gt-city-link__img {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.92);
}
.gt-city-link__a {
    flex: 1 1 auto;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff !important;
    text-decoration: none !important;
}
.gt-city-link__arrow { font-size: 13px; color: #7ef9e6; opacity: 0.6; transition: opacity 0.3s ease, transform 0.3s ease; }
.gt-city-link:hover .gt-city-link__arrow { opacity: 1; transform: translate(2px, -2px); }

/* ---------- FAQ ---------- */
.gt-faq .at-faq-item { border-radius: 20px; padding: 8px 28px; border: 1px solid rgba(255, 255, 255, 0.07); }
.gt-faq .at-faq-button { font-size: 20px; font-weight: 600; line-height: 1.35; letter-spacing: -0.02em; padding-right: 56px; }
.gt-faq .at-faq-number { flex: 0 0 auto; margin-top: 1px; background: var(--gt-gradient); color: #0b0b12; }
.gt-faq .at-faq-body {
    padding-left: 45px;
    padding-right: 60px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gt-text-soft);
}
.gt-faq .at-faq-body p { color: var(--gt-text-soft); font-size: 16px; line-height: 1.7; }
.gt-faq .at-faq-body a { color: #7ef9e6; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 767px) {
    .gt-faq .at-faq-item { padding: 6px 18px; }
    .gt-faq .at-faq-button { font-size: 17px; padding-right: 44px; }
    .gt-faq .at-faq-body { padding-left: 0; padding-right: 0; }
}

/* ---------- Bandeau : titre long, texte d'introduction, note ---------- */
.gt-page-hero__title--long { font-size: clamp(32px, 3.9vw, 58px); }
.gt-hero-lead {
    max-width: 640px;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}
.gt-hero-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #fde047;
    background: rgba(253, 224, 71, 0.1);
    border: 1px solid rgba(253, 224, 71, 0.35);
}
.gt-page-hero .gt-plan-list { margin-top: 4px; }
.gt-page-hero .gt-plan-list li,
.gt-page-hero .gt-plan-list li a { font-size: 17px; }

/* ---------- Formulaires ---------- */
.gt-input,
.gt-block .form-control {
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 16px;
}
.gt-input:focus,
.gt-block .form-control:focus {
    border-color: rgba(0, 255, 209, 0.6);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(0, 255, 209, 0.12);
    color: #fff;
}
.gt-input::placeholder,
.gt-block .form-control::placeholder { color: rgba(255, 255, 255, 0.45); }
.at-btn.gt-submit { border: 0; cursor: pointer; }

/* ---------- Largeur de lecture des sections de contenu ---------- */
@media (min-width: 1400px) {
    .gt-block > .container { max-width: 1320px; }
}

/* Orisa masque tous les <br> sur tablette/mobile : on les garde dans les textes */
main .gt-block br,
main .gt-prose br,
main .at-faq-body br { display: revert; }

/* rangées de colonnes consécutives : on garde l'espacement vertical */
.gt-block .row[class*="g-"] + .row[class*="g-"] { margin-top: 0; }

/* ---------- Boutons principaux / secondaires (bandeaux, CTA) ---------- */
.at-btn.gt-btn-primary,
.at-btn.gt-btn-ghost,
.sec-1-home-4-wrap .sec-1-home-4__btns .at-btn.gt-btn-primary,
.sec-1-home-4-wrap .sec-1-home-4__btns .at-btn.gt-btn-ghost {
    padding: 16px 26px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 100px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.at-btn.gt-btn-primary,
.sec-1-home-4-wrap .sec-1-home-4__btns .at-btn.gt-btn-primary {
    color: #0b0b12;
    background: #fff;
    border: 1px solid #fff;
}
.at-btn.gt-btn-primary:hover,
.sec-1-home-4-wrap .sec-1-home-4__btns .at-btn.gt-btn-primary:hover {
    color: #0b0b12;
    background: #7ef9e6;
    border-color: #7ef9e6;
}
.at-btn.gt-btn-ghost,
.sec-1-home-4-wrap .sec-1-home-4__btns .at-btn.gt-btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.at-btn.gt-btn-ghost:hover,
.sec-1-home-4-wrap .sec-1-home-4__btns .at-btn.gt-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
}

/* cartes empilées dans une colonne */
.gt-block [class*="col"] > .gt-card + .gt-card,
.gt-block [class*="col"] > .gt-card + .gt-alert,
.gt-block [class*="col"] > .gt-alert + .gt-card,
.gt-block [class*="col"] > .gt-alert + .gt-alert { margin-top: 24px; }
.gt-check-list + p,
.gt-check-list + .gt-muted { margin-top: 18px; }
.gt-card--cta .at-btn {
    color: #0b0b12;
    background: #fff;
}
.gt-card--cta .at-btn:hover { color: #0b0b12; background: #7ef9e6; }
.gt-card--cta .gt-card__title { font-size: 24px; }
@media (min-width: 1400px) {
    .gt-cta > .container { max-width: 1320px; }
}

/* ==========================================================================
   Bandeaux construits à partir de l'introduction des pages
   ========================================================================== */
.gt-hero-subtitle {
    margin: -6px 0 18px;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
}
.gt-hero-subtitle span { color: #7ef9e6; }
.gt-page-hero .gt-hero-lead strong { color: #fff; }
.gt-page-hero__title span.price-highlight,
.gt-page-hero__title .price-highlight {
    background: linear-gradient(90deg, #c084fc 0%, #7ef9e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.gt-page-hero__side { display: grid; gap: 20px; text-align: left; }
.gt-page-hero__side img,
.gt-page-hero__side video {
    display: block;
    max-width: 100%;
    max-height: 460px;
    margin: 0 auto;
    border-radius: 22px;
}
.gt-page-hero__side video { width: 100%; box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8); }
.gt-glass {
    position: relative;
    padding: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.82);
}
.gt-glass h3,
.gt-glass h4 { font-size: 19px; line-height: 1.3; letter-spacing: -0.01em; color: #fff; margin-bottom: 14px; }
.gt-glass p { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); }
.gt-glass p:last-child { margin-bottom: 0; }
.gt-glass ul { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 8px; }
.gt-glass li { font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.85); }
.gt-glass .at-btn { margin-top: 8px; }
.gt-page-hero .gt-glass + .gt-glass { margin-top: 18px; }
.gt-page-hero .col-lg-7 > .gt-glass { margin-top: 26px; }

/* liste à pastilles dans les bandeaux (ex. demande d'estimation) */
.gt-plan-list--badges li { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.gt-plan-list--badges .highlight-badge {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0b0b12;
    background: var(--gt-gradient);
}
.gt-plan-list--badges a { color: #7ef9e6; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Divers composants de contenu
   ========================================================================== */
.gt-subheading,
.gt-block h5.gt-subheading,
.gt-block h4.gt-subheading {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: #fff;
    margin: 0 0 14px;
}
.gt-link-list { display: flex; flex-direction: column; gap: 9px; }
.gt-link-list a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}
.gt-link-list a:hover { color: #7ef9e6; transform: translateX(3px); }
.gt-block .gt-link-list a:not([class]) { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.gt-block .gt-link-list a:not([class]):hover { color: #7ef9e6; }
p .gt-link-list,
.gt-link-list.d-inline { display: inline; }

.gt-icon-list { list-style: none; margin: 16px 0; padding: 0; display: grid; gap: 10px; }
.gt-icon-list > li { color: rgba(255, 255, 255, 0.8); font-size: 15.5px; line-height: 1.55; }
.gt-icon-list > li > .gt-icon { width: 20px; margin-right: 8px; color: #7ef9e6; }
.gt-icon-list > li > .gt-icon.text-danger { color: #fb7185 !important; }

.gt-card__img {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 120px;
    margin-bottom: 24px;
    object-fit: contain;
}
.gt-card--thumb .gt-card__img,
.gt-card .gt-thumb img { max-width: none; max-height: none; margin: 0; }

.gt-tag {
    display: inline-flex;
    align-items: center;
    margin: 0 6px 8px 0;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.gt-tag:hover { color: #0b0b12; background: #7ef9e6; border-color: #7ef9e6; }

/* ==========================================================================
   Formulaire de contact (balisage d'origine conservé)
   ========================================================================== */
#digita-contact-form h4 {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
#digita-contact-form .form-group { margin-bottom: 22px; }
#digita-contact-form .form-control {
    width: 100%;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 16px;
}
#digita-contact-form .form-control:focus {
    border-color: rgba(0, 255, 209, 0.6);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(0, 255, 209, 0.12);
    outline: 0;
}
#digita-contact-form textarea.form-control { min-height: 238px; resize: vertical; }
#digita-contact-form .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 6px 0 22px;
}
#digita-contact-form .offset-1 { margin-left: 0; width: 100%; }
#digita-contact-form .form-check-input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    border-color: rgba(255, 255, 255, 0.35);
    background-color: transparent;
    cursor: pointer;
}
#digita-contact-form .form-check-input:checked { background-color: #00c9a7; border-color: #00c9a7; }
#digita-contact-form .checkbox-label { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.65); cursor: pointer; }
#digita-contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    padding: 17px 30px;
    border: 0;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: #0b0b12;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
#digita-contact-form .btn-submit:hover { background: #7ef9e6; transform: translateY(-2px); }
#digita-contact-form .contact-send-message { margin-top: 14px; color: #7ef9e6; }
.get-in-touch {
    padding: 44px;
    border-radius: 28px;
    background: var(--at-neutral-0);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.get-in-touch .form-title { font-size: clamp(26px, 2.4vw, 36px); line-height: 1.15; letter-spacing: -0.03em; color: #fff; margin-bottom: 8px; }
.get-in-touch .form-subtitle { margin-bottom: 30px; }
.availability-item {
    position: relative;
    padding: 10px 0 10px 30px;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.availability-item:last-child { border-bottom: 0; }
.availability-item::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}
@media (max-width: 767px) {
    .get-in-touch { padding: 28px 22px; }
}

/* ==========================================================================
   Questionnaire « Demande d'estimation » (plugin wizard d'origine)
   ========================================================================== */
#survey_container {
    position: relative;
    padding: 44px;
    border-radius: 28px;
    background: var(--at-neutral-0);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
#top-wizard { margin-bottom: 34px; }
#progressbar,
#progressbar.ui-progressbar {
    height: 8px;
    overflow: hidden;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
}
#progressbar .ui-progressbar-value {
    height: 100%;
    margin: 0;
    border: 0;
    border-radius: 100px;
    background: var(--gt-gradient);
    transition: width 0.4s ease;
}
#middle-wizard h3 {
    margin: 0 0 24px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.25;
    letter-spacing: -0.025em;
    font-weight: 600;
    color: #fff;
}
#middle-wizard .step { min-height: 180px; }
#middle-wizard ul.data-list,
#middle-wizard ul.data-list-2 {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}
#middle-wizard ul.data-list-2 > li,
#middle-wizard ul.data-list > li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}
/* Réponses à choix : toute la carte est cliquable, la case est à gauche du texte */
#middle-wizard ul.data-list-2 > li:has(.check_radio, .iradio_square-aero, .icheckbox_square-aero) {
    min-height: 58px;
    padding: 16px 18px 16px 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}
#middle-wizard ul.data-list-2 > li:has(.check_radio, .iradio_square-aero, .icheckbox_square-aero):hover { border-color: rgba(255, 255, 255, 0.24); }
#middle-wizard ul.data-list-2 > li:has(.checked),
#middle-wizard ul.data-list-2 > li:has(input:checked) {
    border-color: rgba(0, 255, 209, 0.55);
    background: rgba(0, 255, 209, 0.07);
}
#middle-wizard ul.data-list:has(.check_radio, .iradio_square-aero, .icheckbox_square-aero) { display: flex; flex-wrap: wrap; gap: 12px 30px; }
#middle-wizard ul.data-list > li:has(.check_radio, .iradio_square-aero, .icheckbox_square-aero) {
    min-height: 26px;
    padding-left: 36px;
    cursor: pointer;
}
#middle-wizard li:has(.check_radio, .iradio_square-aero, .icheckbox_square-aero) > label { flex: 1 1 auto; }

/* Case iCheck dessinée aux couleurs du thème. Elle remplace l'image du fichier aero.css
   (taille et position imposées), quelle que soit la version de ce fichier sur le serveur. */
#middle-wizard .iradio_square-aero,
#middle-wizard .icheckbox_square-aero {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    display: block !important;
    float: none !important;
    width: 24px !important;
    height: 24px !important;
    margin: -12px 0 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.04) !important;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
#middle-wizard ul.data-list-2 > li > .iradio_square-aero,
#middle-wizard ul.data-list-2 > li > .icheckbox_square-aero { left: 18px !important; }
#middle-wizard .icheckbox_square-aero { border-radius: 7px !important; }
#middle-wizard .iradio_square-aero.hover,
#middle-wizard .icheckbox_square-aero.hover,
#middle-wizard li:hover > .iradio_square-aero,
#middle-wizard li:hover > .icheckbox_square-aero { border-color: #7ef9e6 !important; }
#middle-wizard .iradio_square-aero.focus,
#middle-wizard .icheckbox_square-aero.focus { box-shadow: 0 0 0 4px rgba(0, 255, 209, 0.2); }
#middle-wizard .iradio_square-aero.checked,
#middle-wizard .icheckbox_square-aero.checked {
    border-color: transparent !important;
    background: var(--gt-gradient) !important;
}
#middle-wizard .iradio_square-aero::after,
#middle-wizard .icheckbox_square-aero::after {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
#middle-wizard .iradio_square-aero::after {
    content: "";
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: #0b0b12;
}
#middle-wizard .icheckbox_square-aero::after {
    content: "\f00c";
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 12px;
    color: #0b0b12;
}
#middle-wizard .iradio_square-aero.checked::after,
#middle-wizard .icheckbox_square-aero.checked::after { opacity: 1; transform: scale(1); }
#middle-wizard .iradio_square-aero.disabled,
#middle-wizard .icheckbox_square-aero.disabled { opacity: 0.4; cursor: default; }
/* avant l'initialisation du plugin (ou s'il ne se charge pas) : case native au même endroit */
#middle-wizard li > input.check_radio {
    position: absolute;
    top: 50%;
    left: 3px;
    width: 18px;
    height: 18px;
    margin: -9px 0 0;
    accent-color: #00ffd1;
}
#middle-wizard ul.data-list-2 > li > input.check_radio { left: 21px; }
#middle-wizard label { margin: 0; font-size: 16px; line-height: 1.45; color: rgba(255, 255, 255, 0.88); cursor: pointer; }
#middle-wizard .form-control {
    width: 100%;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 16px;
}
#middle-wizard .form-control:focus {
    border-color: rgba(0, 255, 209, 0.6);
    box-shadow: 0 0 0 4px rgba(0, 255, 209, 0.12);
    outline: 0;
}
#middle-wizard label.error,
#middle-wizard span.error { display: block; margin-top: 6px; font-size: 13px; color: #fb7185; }
#middle-wizard .submit.step { text-align: center; padding: 20px 0; }
#middle-wizard .submit.step .gt-icon { display: block; margin-bottom: 16px; font-size: 44px; color: #7ef9e6; }
#bottom-wizard {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#bottom-wizard button,
#middle-wizard button.submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 15px 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
#bottom-wizard button.forward,
#middle-wizard button.submit { color: #0b0b12; background: #fff; border-color: #fff; }
#bottom-wizard button:hover:not([disabled]) { border-color: #7ef9e6; }
#bottom-wizard button.forward:hover:not([disabled]),
#middle-wizard button.submit:hover { background: #7ef9e6; border-color: #7ef9e6; }
#bottom-wizard button[disabled] { opacity: 0.35; cursor: not-allowed; }
#toTop { display: none !important; }
@media (max-width: 767px) {
    #survey_container { padding: 26px 20px; }
    #bottom-wizard button { min-width: 0; flex: 1 1 0; }
}

/* ---------- Vérification de nom de domaine ---------- */
.domain-checkup form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}
.domain-checkup-left { flex: 1 1 420px; }
.domain-checkup .input-field-row { display: flex; gap: 10px; }
.domain-checkup .input-field-row .form-control { flex: 1 1 auto; }
.domain-checkup input.form-control,
.domain-checkup select {
    height: 56px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
}
.domain-checkup select { flex: 0 0 130px; cursor: pointer; }
.domain-checkup select option { color: #111; }
.domain-checkup-right .at-btn,
.domain-checkup-right button { height: 56px; padding: 0 30px; border-radius: 100px; color: #0b0b12; background: #fff; border: 0; font-weight: 600; }
.domain-checkup-right button:hover { background: #7ef9e6; }
#response { margin-top: 18px; font-size: 18px; color: #fff; }
@media (max-width: 575px) {
    .domain-checkup .input-field-row { flex-direction: column; }
    .domain-checkup select { flex-basis: auto; }
}

/* ---------- Bandeau (ancienne bande "slider" sans titre principal) ---------- */
.gt-band { padding: 80px 0; }
.gt-band__title {
    font-size: clamp(26px, 2.6vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 26px;
}
.gt-band__visual { position: relative; text-align: center; }
.gt-band__visual img:first-child { width: 100%; max-width: 420px; height: auto; }
.gt-band__visual img + img {
    position: absolute;
    top: -6%;
    right: 6%;
    width: 28%;
    max-width: 150px;
    height: auto;
    animation-delay: -3s;
}
.gt-card > .at-btn,
.gt-card__body > .at-btn { align-self: flex-start; margin-top: 22px; }
.gt-card--feature > .at-btn,
.gt-card--pricing > .at-btn { margin-top: auto; }
.gt-card--feature > :has(+ .at-btn),
.gt-card--pricing > :has(+ .at-btn) { margin-bottom: 26px; }
.gt-cta-panel .gt-grid { margin-top: 36px; }
.gt-cta-panel .gt-card { background: rgba(8, 8, 16, 0.55); border-color: rgba(255, 255, 255, 0.1); }

/* listes dont les puces font partie du texte (✓, •, →) */
.gt-plain-list { list-style: none; margin: 16px 0; padding: 0; display: grid; gap: 9px; }
.gt-plain-list > li { color: rgba(255, 255, 255, 0.8); font-size: 15.5px; line-height: 1.55; }

/* titres qui suivent une carte ou un encadré dans une colonne */
.gt-block [class*="col"] > .gt-card + h2,
.gt-block [class*="col"] > .gt-card + h3,
.gt-block [class*="col"] > .gt-alert + h2,
.gt-block [class*="col"] > .gt-alert + h3,
.gt-block [class*="col"] > .gt-card + .gt-section-title,
.gt-block [class*="col"] > .gt-alert + .gt-section-title { margin-top: 48px; }
.gt-block [class*="col"] > h2 + .gt-card,
.gt-block [class*="col"] > h3 + .gt-card { margin-top: 8px; }

/* boutons secondaires dans les contenus : contour lisible sur fond sombre */
.gt-block .at-btn:not(.gt-btn-light):not(.gt-btn-primary):not(.gt-btn-ghost):not(.gt-card--cta .at-btn) {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.gt-block .at-btn:not(.gt-btn-light):not(.gt-btn-primary):not(.gt-btn-ghost):not(.gt-card--cta .at-btn):hover {
    background: rgba(0, 255, 209, 0.1);
    border-color: rgba(0, 255, 209, 0.5);
}

/* ---------- Sections de texte (article) ---------- */
.gt-block--prose .container > * { max-width: 920px; }
.gt-block--prose h2:not([class]),
.gt-block--prose h3:not([class]) { margin-top: 44px; }
.gt-block--prose .container > :first-child h2:not([class]),
.gt-block--prose .container > :first-child h3:not([class]),
.gt-block--prose .container > h2:first-child,
.gt-block--prose .container > h3:first-child { margin-top: 0; }
.gt-block--prose p { font-size: 17px; line-height: 1.75; }

/* Les <br> des textes du site sont significatifs (Orisa les masque sur mobile) */
main br,
footer br { display: revert; }

/* Mots mis en valeur dans les titres animés (le texte est découpé par lettres) */
.reveal-text span,
.at-char-animation span {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: #7ef9e6;
}

/* page courante dans les sous-menus */
.at-main-menu .submenu li.gt-current > a,
.at-offcanvas-menu li.gt-current > a { color: #7ef9e6; }

/* ---------- Page 404 ---------- */
.gt-404-title {
    font-size: clamp(56px, 9vw, 140px);
    line-height: 0.95;
    background: linear-gradient(90deg, #ffffff 0%, #d9dcff 45%, #7ef9e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

/* « Me contacter » : masqué dans le menu principal sur grand écran, toujours présent dans les menus latéraux */
.at-offcanvas-menu li.d-xl-none { display: block !important; }

/* Lien d'évitement (accessibilité clavier) */
.gt-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 600;
    color: #0b0b12;
    background: #7ef9e6;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}
.gt-skip-link:focus { transform: none; color: #0b0b12; outline: 2px solid #fff; outline-offset: 2px; }

/* Focus clavier visible (le thème le supprime sur les liens) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid #7ef9e6 !important;
    outline-offset: 3px;
}

/* Icônes illustrées des services (asset/img/service/*.png) dans les cartes */
.gt-card:not(.gt-tab-panel) img[src*="/img/service/"] {
    display: block;
    width: auto;
    max-width: 170px;
    max-height: 130px;
    margin-bottom: 22px;
    object-fit: contain;
}

/* Petits écrans : gouttière des rangées g-5 réduite (pas de débordement horizontal) */
@media (max-width: 575px) {
    .row.g-5 { --bs-gutter-x: 1.5rem; }
}

/* Séparateurs du fil d'Ariane (quand le texte n'en contient pas déjà) */
.gt-breadcrumb--sep li + li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.35);
}

/* Message temporaire (ex. « Numéro copié ») */
.gt-toast {
    position: fixed;
    left: 50%;
    bottom: 32px;
    z-index: 10001;
    padding: 14px 22px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #0b0b12;
    background: #7ef9e6;
    box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translate(-50%, 16px);
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.gt-toast::before {
    content: "\f095";
    margin-right: 10px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
}
.gt-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
