:root {
    --page: #ffffff;
    --page-soft: #f7fbff;
    --header: #ecf6ff;
    --surface: #ffffff;
    --surface-soft: #f3f9ff;
    --line: #d8e7f5;
    --line-strong: #bfd6ec;
    --text: #183b63;
    --text-soft: #496888;
    --blue-strong: #1f5ea9;
    --blue-main: #5ba6ea;
    --blue-light: #a8d5f6;
    --shadow: 0 24px 60px rgba(22, 60, 109, 0.12);
    --header-offset: 110px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(91, 166, 234, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
}

section[id] {
    scroll-margin-top: calc(var(--header-offset) + 8px);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(16, 47, 86, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(8, 23, 44, 0.18);
}

.header-bar {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto minmax(240px, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(7, 21, 40, 0.18);
}

.brand img {
    width: 138px;
    height: auto;
    border-radius: 12px;
}

.header-rack {
    position: relative;
    width: min(100%, 420px);
    height: 76px;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.header-rack-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 63%;
    opacity: 1;
    filter: drop-shadow(0 6px 12px rgba(8, 23, 44, 0.16));
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #eef6ff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================
   NAVIGATION REFAITE PROPREMENT
   ========================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 6px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.main-nav .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #eef6ff !important;
    text-decoration: none !important;
    background: transparent !important;
    border-bottom: 2px solid transparent !important;
    box-shadow: none !important;
    outline: none !important;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.main-nav .nav-link::before,
.main-nav .nav-link::after {
    content: none !important;
    display: none !important;
}




/* UN SEUL état actif */
.main-nav .nav-link[aria-current="page"],
.main-nav .nav-link[aria-current="page"]:hover,
.main-nav .nav-link[aria-current="page"]:focus,
.main-nav .nav-link[aria-current="page"]:focus-visible,
.main-nav .nav-link[aria-current="page"]:active,
.main-nav .nav-link[aria-current="page"]:visited {
    color: orange !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-bottom: 2px solid #ffffff !important;
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.82) !important;
}

@media (max-width: 760px) {
    .main-nav {
        display: none;
        grid-area: nav;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border-radius: 20px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav .nav-link {
        justify-content: flex-start;
        width: 100%;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 36px;
}

.hero::before {
    content: "";
    position: absolute;
    right: -160px;
    top: -110px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 166, 234, 0.32) 0%, rgba(91, 166, 234, 0) 70%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 42%;
    bottom: -180px;
    width: 720px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 166, 234, 0.22) 0%, rgba(91, 166, 234, 0) 70%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 32px;
    align-items: start;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--header);
    color: var(--blue-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.expertise-copy h2,
.cta-panel h2 {
    margin: 18px 0 14px;
    font-size: 25px;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.hero-copy p,
.section-heading p,
.expertise-copy p,
.step-card p,
.cta-panel p,
.footer-brand p,
.legal-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 26px 0;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-strong), var(--blue-main));
    box-shadow: 0 18px 36px rgba(31, 94, 169, 0.22);
}

.btn-secondary {
    color: var(--blue-strong);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
}

.hero-metrics,
.showcase-stack,
.card-grid,
.expertise-points,
.process-steps,
.legal-grid {
    display: grid;
    gap: 18px;
}

.hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-visual-card,
.metric-card,
.mini-offer,
.service-card,
.point-card,
.cta-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(216, 231, 245, 0.95);
    border-radius: 22px;
    box-shadow: 0 20px 42px rgba(24, 59, 99, 0.08);
}

.metric-card {
    padding: 20px;
    backdrop-filter: blur(8px);
}

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

.metric-card span {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
}

.app-visual-card {
    display: grid;
    gap: 20px;
    margin-top: 18px;
    padding: 22px;
    background:
        radial-gradient(circle at top right, rgba(168, 213, 246, 0.35) 0%, rgba(168, 213, 246, 0) 34%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.app-visual-copy {
    display: grid;
    gap: 14px;
}

.app-visual-copy h2 {
    margin: 0;
    font-size: 21px;
    line-height: 1.28;
}

.device-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.device-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(188, 214, 238, 0.95);
    background: rgba(255, 255, 255, 0.88);
    color: #275282;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(24, 59, 99, 0.05);
}

.device-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    stroke: #4f8fd4;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.app-visual-frame {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(204, 224, 242, 0.95);
    background:#fff;
}

.app-visual-frame::before {
    content: "";
    position: absolute;
    inset: auto 10% 10px;
    height: 28px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(24, 59, 99, 0.14) 0%, rgba(24, 59, 99, 0) 72%);
}

.app-visual-frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 540px);
    max-height: 290px;
   
   
}

.hero-showcase {
    display: grid;
    gap: 18px;
}

.network-visual-card,
.showcase-card {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid #d9ebfb;
    background: linear-gradient(180deg, #edf7ff 0%, #ffffff 100%);
    box-shadow: var(--shadow);
}

.card-kicker {
    margin: 0 0 10px;
    color: var(--blue-main);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.showcase-card h2 {
    margin: 0 0 18px;
    font-size: 23px;
    line-height: 1.28;
}

.network-visual-card {
    display: grid;
    gap: 14px;
    background:
        radial-gradient(circle at top left, rgba(168, 213, 246, 0.28) 0%, rgba(168, 213, 246, 0) 34%),
        linear-gradient(180deg, #fafdff 0%, #eef7ff 100%);
}

.network-visual-head {
    display: grid;
    gap: 14px;
}

.network-visual-head h3 {
    margin: 10px 0 0;
    font-size: 21px;
    line-height: 1.3;
}

.network-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.network-pill-group span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(192, 216, 239, 0.95);
    color: #2b5889;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(24, 59, 99, 0.05);
}

.network-pill-group-secondary {
    padding-top: 2px;
}

.network-pill-group-secondary span {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(192, 216, 239, 0.95);
    color: #2b5889;
}

.offer-list,
.card-list,
.compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.offer-list li,
.compact-list li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.55;
    color: #28507d;
}

.offer-list li::before,
.compact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-main), var(--blue-strong));
    box-shadow: 0 0 0 4px rgba(168, 213, 246, 0.35);
}

.showcase-card .offer-list li,
.cta-box .compact-list li {
    --offer-dot-delay: 0s;
}

.showcase-card .offer-list li:nth-child(1),
.cta-box .compact-list li:nth-child(1) {
    --offer-dot-delay: 0s;
}

.showcase-card .offer-list li:nth-child(2),
.cta-box .compact-list li:nth-child(2) {
    --offer-dot-delay: 0.55s;
}

.showcase-card .offer-list li:nth-child(3),
.cta-box .compact-list li:nth-child(3) {
    --offer-dot-delay: 1.1s;
}

.showcase-card .offer-list li:nth-child(4),
.cta-box .compact-list li:nth-child(4) {
    --offer-dot-delay: 1.65s;
}

.showcase-card .offer-list li::after,
.cta-box .compact-list li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #78ddb8, #3d9f69);
    box-shadow: 0 0 0 4px rgba(159, 229, 191, 0.34);
    opacity: 0;
    transform: scale(0.88);
    animation: showcase-dot-cascade 4.6s ease-in-out infinite;
    animation-delay: var(--offer-dot-delay);
    pointer-events: none;
}

@keyframes showcase-dot-cascade {
    0%,
    14%,
    100% {
        opacity: 0;
        transform: scale(0.88);
    }

    26%,
    40% {
        opacity: 1;
        transform: scale(1.08);
    }

    52% {
        opacity: 0.45;
        transform: scale(1);
    }

    64%,
    100% {
        opacity: 0;
        transform: scale(0.92);
    }
}

.showcase-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-offer {
    padding: 22px;
}

.mini-offer h3,
.service-card h3,
.point-card h3,
.step-card h3,
.legal-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
}

.mini-offer p,
.service-card p,
.point-card p,
.cta-note {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
}

.section {
    padding: 34px 0 0;
}

.section-soft {
    padding-top: 54px;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 28px;
}

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

.service-card {
    padding: 26px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.service-header h3 {
    margin: 0;
}

.service-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, #eef7ff 0%, #dceeff 100%);
    border: 1px solid rgba(192, 216, 239, 0.95);
    box-shadow: 0 10px 18px rgba(24, 59, 99, 0.06);
}

.service-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-strong);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.card-list li {
    padding: 11px 14px;
    background: var(--surface-soft);
    border: 1px solid #e2eef8;
    border-radius: 14px;
    font-size: 14px;
    color: #2f537c;
}

.expertise-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: start;
}

.expertise-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.point-card {
    padding: 22px;
}

.process-panel {
    padding: 34px;
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #1c4e89 0%, #2968ad 56%, #76b8ef 100%);
    box-shadow: 0 28px 70px rgba(20, 50, 94, 0.22);
}

.section-heading-light {
    max-width: 720px;
}

.section-heading-light .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.section-heading-light h2,
.section-heading-light p,
.step-card p {
    color: #ffffff;
}

.process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
}

.step-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-icon svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.section-cta {
    padding-bottom: 74px;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 22px;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid #d9ebfb;
    background: linear-gradient(180deg, #edf7ff 0%, #ffffff 100%);
    box-shadow: var(--shadow);
}

.contact-lead {
    display: grid;
    align-content: start;
    gap: 16px;
}

.contact-lead h2 {
    margin: 0;
}

.contact-actions {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.contact-trigger {
    width: max-content;
    min-width: 210px;
}

.contact-inline-note {
    margin: 0;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
}

.cta-box {
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(168, 213, 246, 0.18) 0%, rgba(168, 213, 246, 0) 34%),
        rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(216, 231, 245, 0.95);
    box-shadow: 0 20px 42px rgba(24, 59, 99, 0.06);
}

.cta-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(132, 181, 227, 0.36);
    background: linear-gradient(180deg, rgba(242, 249, 255, 0.98) 0%, rgba(231, 242, 252, 0.92) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #2f5b8f;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.cta-note::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6db9f2, #3b9d7f);
    box-shadow: 0 0 0 4px rgba(171, 222, 214, 0.28);
}

.site-footer {
    padding: 56px 0 24px;
    color: #d9e8f7;
    background: #102f56;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.5fr) minmax(180px, 0.5fr);
    gap: 36px;
    align-items: start;
}

.footer-logo-link {
    display: inline-flex;
}

.footer-logo-link img {
    width: 180px;
    height: auto;
}

.footer-brand p {
    max-width: 440px;
    margin: 20px 0 0;
    color: #c4d9ef;
}

.footer-column h3 {
    margin: 8px 0 18px;
    font-size: 18px;
    line-height: 1.3;
    color: #ffffff;
}

.footer-list {
    display: grid;
    gap: 12px;
}

.footer-list a {
    color: #eaf3ff;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
    color: #8dc4ff;
}

.footer-divider {
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
}

.footer-bottom p {
    margin: 0;
    color: #aecaeb;
    font-size: 13px;
    line-height: 1.6;
}

.footer-anchor-targets {
    position: absolute;
    inset: 0 auto auto 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.contact-modal[hidden] {
    display: none;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 21, 41, 0.56);
    backdrop-filter: blur(4px);
}

.contact-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(90vh, 860px);
    overflow: auto;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(216, 231, 245, 0.95);
    background: linear-gradient(180deg, #edf7ff 0%, #ffffff 100%);
    box-shadow: 0 32px 80px rgba(6, 25, 47, 0.28);
}

.contact-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(16, 47, 86, 0.08);
    color: #1a4675;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.contact-modal-header {
    padding-right: 48px;
}

.contact-modal-kicker {
    margin: 0 0 10px;
    color: var(--blue-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-modal-header h3 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.24;
}

.contact-modal-header p,
.contact-form-note,
.contact-form-status {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

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

.form-field {
    display: grid;
    gap: 8px;
}

.form-field span {
    color: #214d7f;
    font-size: 14px;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(197, 218, 239, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid rgba(91, 166, 234, 0.26);
    border-color: rgba(91, 166, 234, 0.88);
}

.contact-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-submit-button {
    gap: 10px;
}

.contact-submit-button:disabled {
    cursor: wait;
    opacity: 0.92;
}

.contact-submit-loader {
    width: 16px;
    height: 16px;
    display: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: contact-submit-spin 0.7s linear infinite;
}

.contact-submit-button.is-loading .contact-submit-loader {
    display: inline-block;
}

.contact-form-note {
    max-width: 320px;
}

.contact-form-status {
    min-height: 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.chatbot-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 45;
    display: grid;
    justify-items: end;
    gap: 14px;
}

.chatbot-widget.is-open {
    gap: 0;
}

.chatbot-widget.is-open .chatbot-toggle {
    display: none;
}

.chatbot-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #183b78 0%, #21558f 58%, #2b7868 100%);
    box-sizing: border-box;
    box-shadow: none;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
}

.chatbot-toggle::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.96);
    pointer-events: none;
}

.chatbot-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
}

.chatbot-toggle-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 10px;
}

.chatbot-toggle::after {
    content: none;
}

.chatbot-panel {
    width: min(360px, calc(100vw - 32px));
    max-height: min(68vh, 560px);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    gap: 16px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(216, 231, 245, 0.96);
    background:
        radial-gradient(circle at top right, rgba(168, 213, 246, 0.26) 0%, rgba(168, 213, 246, 0) 32%),
        linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 24px 60px rgba(10, 33, 63, 0.18);
}

.chatbot-panel[hidden] {
    display: none;
}

.chatbot-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
}

.chatbot-header-copy {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "avatar kicker"
        "avatar title";
    align-items: center;
    column-gap: 12px;
    row-gap: 4px;
}

.chatbot-avatar {
    grid-area: avatar;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(91, 166, 234, 0.12);
    border: 1px solid rgba(191, 214, 236, 0.9);
}

.chatbot-avatar img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 7px;
}

.chatbot-kicker {
    grid-area: kicker;
    margin: 0 0 6px;
    color: var(--blue-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chatbot-header h3 {
    grid-area: title;
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    color: #173b68;
}

.chatbot-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: rgba(16, 47, 86, 0.08);
    color: #1a4675;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.chatbot-messages {
    min-height: 0;
    overflow: auto;
    display: grid;
    gap: 12px;
    padding-right: 4px;
}

.chatbot-message {
    max-width: 92%;
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 8px 22px rgba(19, 49, 84, 0.08);
}

.chatbot-message p {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.chatbot-message.is-bot {
    justify-self: start;
    background: #f3f9ff;
    border: 1px solid #dbeaf8;
    color: #234f7e;
}

.chatbot-message.is-user {
    justify-self: end;
    background: linear-gradient(135deg, #1f5ea9, #2f8973);
    color: #ffffff;
}

.chatbot-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chatbot-chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(154, 191, 226, 0.44);
    background: rgba(245, 250, 255, 0.98);
    color: #2b5889;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.chatbot-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.chatbot-field input {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(197, 218, 239, 0.95);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0 14px;
    font: inherit;
    color: var(--text);
}

.chatbot-field input:focus {
    outline: 2px solid rgba(91, 166, 234, 0.26);
    border-color: rgba(91, 166, 234, 0.88);
}

.chatbot-send,
.chatbot-contact {
    border: 0;
    border-radius: 14px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.chatbot-send {
    min-width: 96px;
    padding: 0 18px;
    background: linear-gradient(135deg, #1f5ea9, #318a75);
    color: #ffffff;
}

.chatbot-contact {
    min-height: 44px;
    padding: 0 14px;
    background: rgba(16, 47, 86, 0.07);
    color: #214d7f;
    border: 1px solid rgba(191, 214, 236, 0.9);
}

@keyframes chatbot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(141, 227, 190, 0.45);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(141, 227, 190, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(141, 227, 190, 0);
    }
}

body.modal-open {
    overflow: hidden;
}

@keyframes contact-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {
    .site-header {
        position: static;
    }

    .header-bar {
        grid-template-columns: auto auto;
        grid-template-areas:
            "brand nav"
            "rack rack";
        justify-content: center;
        padding: 12px 0;
    }

    .brand {
        display: flex;
        justify-content: center;
        grid-area: brand;
    }

    .header-rack {
        grid-area: rack;
        width: min(100%, 460px);
    }

    .main-nav {
        grid-area: nav;
    }

    .hero-layout,
    .expertise-layout,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    .header-bar {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            "brand rack toggle"
            "nav nav nav";
        gap: 14px;
        align-items: center;
        padding: 10px 0 12px;
    }

    .brand {
        grid-area: brand;
        justify-self: start;
        padding: 5px 8px;
        border-radius: 14px;
    }

    .brand img {
        width: 84px;
    }

    .header-rack {
        display: flex;
        grid-area: rack;
        justify-self: start;
        align-self: center;
        width: min(100%, 196px);
        height: 56px;
        margin-left: 8px;
    }

    .menu-toggle {
        display: inline-flex;
        grid-area: toggle;
        justify-self: end;
        align-self: start;
        width: 44px;
        height: 44px;
    }

    .hero {
        padding-top: 36px;
    }

    .main-nav {
        display: none;
        grid-area: nav;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border-radius: 20px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav .nav-link {
        justify-content: flex-start;
        width: 100%;
    }

    .hero-copy h1,
    .section-heading h2,
    .expertise-copy h2,
    .cta-panel h2,
    .showcase-card h2 {
        font-size: 23px;
    }

    .hero-metrics,
    .showcase-stack,
    .card-grid,
    .expertise-points,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .showcase-card,
    .network-visual-card,
    .app-visual-card,
    .service-card,
    .process-panel,
    .cta-panel,
    .cta-box,
    .point-card {
        padding: 24px;
    }

    .app-visual-frame {
        min-height: 210px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 14px;
    }

    .footer-logo-link img {
        width: 112px;
    }

    .footer-brand p {
        margin: 0;
        font-size: 13px;
        line-height: 1.55;
    }

    .footer-bottom {
        display: grid;
        justify-content: start;
    }

    .footer-column h3 {
        margin-bottom: 14px;
        font-size: 17px;
    }

    .footer-list a {
        font-size: 15px;
    }

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

    .contact-form-actions {
        justify-content: flex-start;
    }

    .chatbot-widget {
        right: 12px;
        bottom: 12px;
        left: 12px;
        justify-items: stretch;
    }

    .chatbot-toggle {
        width: 54px;
        height: 54px;
        justify-content: center;
        justify-self: end;
    }

    .chatbot-toggle-icon {
        width: 100%;
        height: 100%;
    }

    .chatbot-toggle-icon img {
        width: 34px;
        height: 34px;
    }

    .chatbot-panel {
        width: 100%;
        max-height: min(70vh, 540px);
    }

    .chatbot-form {
        grid-template-columns: 1fr;
    }

    .chatbot-send,
    .chatbot-contact {
        min-height: 44px;
    }
}

/* FAQ / ACCORDÉON */

.faq-section {
    padding: 60px 0;
    background: #f7f8fb;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #f1f3f7;
    border: 1px solid #dde3ee;
    border-radius: 22px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 60px 24px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #183b78;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "⌄";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #2d63ff;
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    padding: 0 24px 24px 24px;
    color: #334155;
    line-height: 1.7;
}

.faq-content > p {
    margin: 0 0 18px;
}

.faq-subtopic + .faq-subtopic {
    margin-top: 18px;
}

.faq-subtopic h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    line-height: 1.4;
    color: #183b78;
}

.faq-subtopic p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-item summary {
        font-size: 1rem;
        padding: 18px 50px 18px 18px;
    }

    .faq-content {
        padding: 0 18px 18px 18px;
    }
}

.page-header-box {
    background: #ffffff;
    border: 1px solid #e3e8f0;
    border-radius: 18px;
    padding: 25px 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.page-header-box h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #183b78;
}

.btn-return {
    background: #2d63ff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-return:hover {
    background: #1f4fd6;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .page-header-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-return {
        width: 100%;
        text-align: center;
    }
}

.network-gallery-section {
    padding-top: 10px;
    padding-bottom: 30px;
}

.offer-promo-section {
    padding-top: 8px;
    padding-bottom: 8px;
}

.offer-promo-card {
    display: grid;
    gap: 22px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #d9e4f2;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(14, 30, 66, 0.06);
}

.offer-promo-head {
    display: grid;
    gap: 10px;
    max-width: 760px;
}

.offer-promo-head h2 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.28;
    color: #183b78;
}

.offer-promo-head p {
    margin: 0;
    color: #4a6287;
    font-size: 0.95rem;
    line-height: 1.7;
}

.offer-promo-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.offer-promo-note {
    color: #4a6287;
    font-size: 0.92rem;
    line-height: 1.6;
}

.offer-promo-visual {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dbe6f4;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(24, 59, 99, 0.08);
}

.offer-promo-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.promo-hero-section {
    padding-top: 42px;
    padding-bottom: 22px;
}

.promo-hero-layout,
.promo-builder-layout {
    display: grid;
    gap: 26px;
}

.promo-hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: center;
}

.promo-hero-copy h1 {
    margin: 18px 0 14px;
    font-size: 2.2rem;
    line-height: 1.15;
    color: #183b78;
}

.promo-hero-copy p {
    margin: 0;
    color: #4a6287;
    font-size: 1rem;
    line-height: 1.75;
}

.promo-hero-list {
    margin-top: 24px;
}

.promo-hero-visual {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #dbe6f4;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(24, 59, 99, 0.08);
}

.promo-builder-section {
    padding-top: 12px;
    padding-bottom: 38px;
}

.promo-builder-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    align-items: start;
}

.promo-form-wrap,
.promo-summary-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #d9e4f2;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(14, 30, 66, 0.06);
}

.promo-form-wrap {
    padding: 28px;
}

.promo-heading {
    margin-bottom: 18px;
}

.promo-heading h2 {
    margin-bottom: 10px;
}

.promo-form {
    display: grid;
    gap: 18px;
}

.promo-panel {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid #dbe6f4;
    background: #fdfefe;
}

.promo-panel-head {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.promo-panel-head h3 {
    margin: 0;
    font-size: 1.08rem;
    color: #183b78;
}

.promo-panel-head p,
.promo-domain-helper,
.promo-pay-note {
    margin: 0;
    color: #5b7291;
    font-size: 0.93rem;
    line-height: 1.65;
}

.promo-domain-row,
.promo-form-grid,
.promo-cms-grid {
    display: grid;
    gap: 16px;
}

.promo-domain-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.promo-check-btn {
    min-width: 132px;
}

.promo-domain-field,
.field-group {
    display: grid;
    gap: 8px;
}

.field-group span {
    font-size: 0.93rem;
    font-weight: 700;
    color: #244c7b;
}

.field-group input,
.field-group textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cfe0f0;
    border-radius: 16px;
    background: #ffffff;
    color: #183b63;
    font: inherit;
}

.field-group textarea {
    min-height: 120px;
    resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: 2px solid rgba(91, 166, 234, 0.18);
    border-color: #5ba6ea;
}

.promo-domain-status {
    margin-top: 12px;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #dbe6f4;
    background: #f7fbff;
    color: #35597f;
    font-size: 0.94rem;
    line-height: 1.6;
}

.promo-domain-status.is-checking {
    border-color: #bfd6ec;
    color: #35597f;
}

.promo-domain-status.is-success {
    border-color: rgba(61, 159, 105, 0.36);
    background: rgba(221, 244, 228, 0.82);
    color: #1f6a46;
}

.promo-domain-status.is-error {
    border-color: rgba(194, 74, 74, 0.24);
    background: rgba(255, 239, 239, 0.92);
    color: #8c2f2f;
}

.promo-cms-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-choice-card {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 168px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #dbe6f4;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.promo-choice-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(24, 59, 99, 0.08);
}

.promo-choice-card input {
    position: absolute;
    inset: 12px 12px auto auto;
}

.promo-choice-card:has(input:checked) {
    border-color: #5ba6ea;
    box-shadow: 0 12px 24px rgba(24, 59, 99, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.promo-choice-title {
    font-size: 1rem;
    font-weight: 800;
    color: #183b78;
}

.promo-choice-text {
    color: #5b7291;
    font-size: 0.92rem;
    line-height: 1.65;
}

.promo-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promo-form-grid .field-group:last-child {
    grid-column: 1 / -1;
}

.promo-summary-wrap {
    position: sticky;
    top: calc(var(--header-offset) + 20px);
}

.promo-summary-card {
    padding: 24px;
    display: grid;
    gap: 20px;
}

.promo-summary-head h2 {
    margin: 10px 0 0;
    font-size: 1.3rem;
    color: #183b78;
}

.promo-summary-price {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 94, 169, 0.08), rgba(91, 166, 234, 0.16));
    border: 1px solid rgba(191, 214, 236, 0.95);
}

.promo-summary-price strong {
    font-size: 1.42rem;
    color: #183b78;
}

.promo-summary-price span {
    color: #4a6287;
    font-size: 0.92rem;
}

.promo-summary-list {
    display: grid;
    gap: 14px;
    margin: 0;
}

.promo-summary-list div {
    display: grid;
    gap: 5px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6eef7;
}

.promo-summary-list dt {
    font-size: 0.79rem;
    font-weight: 800;
    color: #6781a0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.promo-summary-list dd {
    margin: 0;
    color: #183b63;
    font-size: 0.98rem;
    line-height: 1.55;
    word-break: break-word;
}

.promo-summary-includes h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #183b78;
}

.promo-summary-footer {
    display: grid;
    gap: 12px;
}

.promo-summary-footer p {
    margin: 0;
    color: #4a6287;
    line-height: 1.7;
}

.promo-recap-layout,
.promo-result-layout {
    display: grid;
    gap: 24px;
}

.promo-detail-card,
.promo-result-card {
    background: #ffffff;
    border: 1px solid #d9e4f2;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(14, 30, 66, 0.06);
}

.promo-detail-card {
    padding: 24px;
    display: grid;
    gap: 20px;
}

.promo-result-section {
    padding-top: 48px;
}

.promo-result-layout {
    max-width: 900px;
}

.promo-result-card {
    padding: 32px;
    display: grid;
    gap: 22px;
}

.promo-result-card h1 {
    margin: 0;
    color: #183b78;
    font-size: 2rem;
}

.promo-result-card > p {
    margin: 0;
    color: #4a6287;
    line-height: 1.8;
}

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

.promo-alert {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #dbe6f4;
    background: #f7fbff;
    color: #35597f;
    line-height: 1.7;
}

.promo-alert h3 {
    margin: 0 0 10px;
    color: #183b78;
}

.promo-alert-error {
    border-color: rgba(194, 74, 74, 0.24);
    background: rgba(255, 239, 239, 0.92);
    color: #8c2f2f;
}

.promo-alert-info {
    border-color: rgba(91, 166, 234, 0.24);
    background: rgba(245, 251, 255, 0.96);
    color: #244c7b;
}

.promo-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(91, 166, 234, 0.14);
    color: #183b78;
    font-size: 0.86rem;
    font-weight: 700;
}

.promo-step-note {
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 94, 169, 0.06), rgba(91, 166, 234, 0.12));
    border: 1px solid rgba(191, 214, 236, 0.95);
}

.promo-step-note p {
    margin: 0;
    color: #35597f;
    line-height: 1.8;
}

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.promo-inline-form {
    margin: 0;
}

.promo-pay-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
}

.network-gallery-card {
    background: #ffffff;
    border: 1px solid #d9e4f2;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(14, 30, 66, 0.06);
}

.network-gallery-head h2 {
    margin: 8px 0 10px;
    font-size: 1.45rem;
    color: #183b78;
}

.network-gallery-head p {
    color: #4a6287;
    font-size: 0.95rem;
}

.network-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.network-gallery-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dbe6f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.network-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.network-gallery-item figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #4a6287;
    text-align: center;
}

@media (max-width: 900px) {
    .offer-promo-card {
        padding: 18px;
        gap: 18px;
    }

    .offer-promo-actions,
    .promo-domain-row,
    .promo-hero-layout,
    .promo-builder-layout,
    .promo-form-grid,
    .promo-cms-grid,
    .promo-recap-grid {
        grid-template-columns: 1fr;
    }

    .promo-form-wrap,
    .promo-summary-card,
    .promo-detail-card,
    .promo-result-card {
        padding: 18px;
    }

    .promo-panel {
        padding: 18px;
    }

    .promo-summary-wrap {
        position: static;
    }

    .network-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: zoom-out;
}

.promo-hero-visual {
    margin-top: 65px;
}

@media (max-width: 900px) {
    .promo-hero-visual {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .footer-logo-link img {
        width: 90px !important;
        height: auto !important;
    }
}

.hosting-offer-banner {
    margin: 40px auto 0;
    max-width: 900px;
    text-align: center;
}

.hosting-offer-banner a {
    display: block;
}

.hosting-offer-banner img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(24, 59, 120, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hosting-offer-banner img:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(24, 59, 120, 0.22);
}

@media (max-width: 768px) {
    .hosting-offer-banner {
        margin-top: 28px;
        padding: 0 4px;
    }

    .hosting-offer-banner img {
        border-radius: 16px;
    }
}

.typing-loader {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 18px;
}

.typing-loader span {
    width: 7px;
    height: 7px;
    background: #222;
    border-radius: 50%;
    opacity: 0.35;
    animation: typing-bounce 1s infinite ease-in-out;
}

.typing-loader span:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-loader span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.35;
    }

    40% {
        transform: translateY(-5px);
        opacity: 1;
    }
}


.app-visual-frame.app-slider {
  display: grid;
  place-items: center;
}

.app-slider .slide {
  grid-area: 1 / 1;
  width: min(100%, 540px);
  max-height: 290px;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.app-slider .slide.active {
  opacity: 1;
}
