@media (max-width: 992px) {
    .back-to-top {
        top: auto;
        bottom: 24px;
        left: auto;
        right: 16px;
        padding: 8px 12px;
        z-index: 50;
    }
    .back-to-top:hover .tooltip-text {
        top: auto;
        bottom: calc(100% + 8px);
    }
}
/* ------------------------- Header -------------------------- */

@media (max-width: 992px) {
    .site-header {
        top: 0; 
        left: 0;
        right: 0;
        transform: none !important;
        width: 100%;
        border-radius: 0;
        height: 78px;
        background: rgba(27, 27, 27, 0.75);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        box-shadow: 0 8px 30px rgba(0,0,0,0.35);
        overflow: visible;
    }

    .site-header.hidden,
    .site-header.visible {
        transform: none !important;
        opacity: 1 !important;
    }

    .header-inner {
        display: grid;
        grid-template-columns: 1fr 40px 1fr;
        align-items: center;
        height: 100%;
        padding: 0 14px;
        overflow: visible;
    }

    .nav-left {
        grid-column: 1;
        justify-self: start;
        min-width: 0;
    }

    .nav-right {
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .nav-toggle {
        grid-column: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        backdrop-filter: blur(10px);
        cursor: pointer;
        transition: transform 0.15s ease, background 0.2s ease;
    }

    .nav-toggle:active {
        transform: scale(0.95);
        background: rgba(255,255,255,0.08);
    }

    .nav-toggle:focus-visible { 
        outline: 2px solid var(--brand-color, #0b6efd);
        outline-offset: 3px;
    }

    [aria-expanded="true"] .hamburger {
        background: transparent;
    }

    [aria-expanded="true"] .hamburger::before {
        transform: translateY(6px) rotate(45deg);
    }

    [aria-expanded="true"] .hamburger::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 78px; 
        left: 10px;
        right: 10px;
        text-align: left;
        background: rgba(27, 27, 27, 0.88);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        padding: 0.9rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);

        display: flex;
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    }

    .main-nav.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        width: 100%;
        text-align: left;
        white-space: normal;
        overflow-wrap: break-word; 
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 12px;
    }

    .main-nav a:active {
        background: rgba(255,255,255,0.06);
    }

    .main-nav .submenu {
        position: static;
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        padding: 0 0.8rem;
        border-left: 2px solid rgba(11,110,253,0.35);
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        opacity: 0;
        transform: translateY(-4px);

        transition:
            max-height  0.25s ease,
            opacity     0.25s ease,
            transform   0.25s ease,
            margin-top  0.25s ease,
            padding     0.25s ease;
    }

    .main-nav .has-submenu.submenu-open > .submenu {
        max-height: 500px;
        margin-top: 0.5rem;
        padding: 0.6rem 0.8rem;
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav .submenu li a {
        padding: 0.7rem 0.9rem;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 500;
        color: rgba(255,255,255,0.78);
        transition: background 0.2s ease, color 0.2s ease;
    }

    .main-nav .submenu li a:hover,
    .main-nav .submenu li a:active { 
        background: rgba(255,255,255,0.06);
        color: var(--brand-color);
    }

    .main-nav .submenu li + li {
        margin-top: 4px;
    }

    .lang-switcher {
        justify-self: end;
        gap: 0.3rem;
        min-width: 0;
    }

    .lang {
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
        border-radius: 8px;
        background: rgba(255,255,255,0.04);
    }

    .lang.active {
        background: rgba(11,110,253,0.15);
    }
}


/* ------------------------- Footer -------------------------- */

@media (max-width: 992px) {

    .site-footer {
        bottom: 10px;
        width: 100% ;
        padding: 20px 16px;
        
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .footer-brand {
        margin-left: 0;
        justify-content: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 6px;
        margin: 0 0 10px;
        justify-content: center;
    }

    .footer-nav a {
        font-size: 0.9rem;
        padding: 5px 8px;
    }

    .footer-cta {
        margin-right: 0;
        display: block;
        width: 100%;
        text-align: center;
        padding: 13px 16px;
        box-sizing: border-box;
    }

    .footer-copy {
        font-size: 0.78rem;
    }
}



/* ------------------------- landing-page -------------------------- */

@media (max-width: 992px) {

    .section-company {
        padding-top: 250px;
        padding-bottom: 350px;
    }

    .company-inner {
        gap: 10px;
        padding: 20px 16px;
    }

    .company-logomain img {
        max-width: min(260px, 75vw);
        margin-bottom: 24px;
    }

    .site_description {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .site_description_devise {
        font-size: 0.82rem;
        margin: 6px auto 14px;
    }

    .hero-actions {
        margin-top: 30px;
        margin-bottom: 6px;
    }

    .rocket-icon {
        width: 50px;
        height: 50px;
    }

    .company-logo img {
        max-width: 80px;
        margin-top: 16px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {

    .section-company {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .company-logomain img {
        max-width: min(200px, 70vw);
        margin-bottom: 16px;
    }

    .site_description {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}


@media (prefers-reduced-motion: reduce) {

    .company-logomain img,
    .company-logooffre img,
    .company-logo img,
    .site_description,
    .site_description_devise,
    .hero-actions {
        animation: none;
        opacity: 1;
    }
}

@media (max-width: 960px) {
    .problem {
        padding: 64px 0 0;
    }

    .problem-layout {
        flex-direction: column-reverse;
        gap: 40px;
        align-items: stretch;
    }

    .problem-visual {
        flex: none;
        max-width: 360px;
        margin: 0 auto;
    }

    .problem-visual img {
        transform: scale(1.02);
    }
}

@media (max-width: 600px) {
    .problem {
        padding: 48px 0 0;
    }

    .problem-content {
        padding: 24px 20px;
    }

    .problem-content h2 {
        font-size: 1.4rem;
    }

    .problem-content p {
        font-size: .88rem;
    }

    .problem-result {
        font-size: .95rem !important;
    }

    .problem-points li {
        font-size: .85rem;
        padding: 10px 12px;
    }

    .problem-visual {
        max-width: 260px;
    }

    .problem .section-divider {
        margin-top: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .problem-points li,
    .problem-visual img {
        transition: none;
    }
}

@media (max-width: 860px) {
    .why-target {
        padding: 64px 0 96px;
    }

    .why-target-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-target-cta {
        margin-top: 56px;
    }

    .wt-cta-sep {
        height: 36px;
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .why-target {
        padding: 48px 0 80px;
    }

    .why-box,
    .target-box {
        padding: 24px 20px;
        gap: 16px;
    }

    .why-box h2,
    .target-box h2 {
        font-size: 1.25rem;
    }

    .feature-list li {
        font-size: .85rem;
        padding: 10px 12px;
    }

    .why-target-cta h2 {
        font-size: 1.35rem;
    }

    .cta-text {
        font-size: .88rem;
    }

    .btn-accueil {
        padding: 13px 32px;
        font-size: .96rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-list li,
    .btn-accueil {
        transition: none;
    }
}

/* ------------------------- accueil -------------------------- */

@media (max-width: 768px) {
    main .hero .logo img { max-width: 160px; }

    main .hero h1 { font-size: 1.9rem; }

    main .hero .subtitle { font-size: 1rem; }

    .hero-window-content {
        padding: 24px 16px;
        margin-top: 14px;
    }

    main .hero-points {
        flex-direction: column;
        align-items: stretch;
        max-width: 340px;
        width: 100%;
    }

    main .hero-points li {
        white-space: normal;
        text-align: left;
    }
}

@media (max-width: 480px) {
    main .hero h1 { font-size: 1.55rem; }
    .hero-window-content { padding: 18px 14px; }
}


@media (max-width: 1100px) {
    .sol-off-inner {
        gap: 60px;
    }

    .sol-off-rocket-area {
        grid-template-columns: 280px 145px;
    }
}

@media (max-width: 960px) {
    .sol-off {
        height: auto;
        overflow: visible;
    }

    .sol-off-inner {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        overflow: visible;
        padding: 40px clamp(1rem, 4vw, 2rem);
    }

    .sol-off-content {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .sol-off-content h2 {
        margin-bottom: 24px;
    }

    .solution-image {
        margin: 0 auto;
    }

    .pricing-spacer,
    .pricing-card {
        display: none;
    }

    .sol-off-rocket-area {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .rocketv-wrapper {
        grid-column: 1;
        grid-row: 1 / 6;
        width: 100%;
    }

    .sol-off-offers-title {
        margin-top: 24px;
    }
}

@media (max-width: 600px) {
    .rocketv-fin { display: none; }

    .sol-off-content {
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .rocketv-sas {
        gap: 10px;
        padding: 12px 14px;
    }

    .rocketv-porthole {
        width: 32px;
        height: 32px;
    }

    .rocketv-porthole::before,
    .rocketv-porthole::after {
        display: none;
    }

    .rocketv-porthole-core {
        width: 14px;
        height: 14px;
    }

    .rocketv-sas-body h3 { font-size: .8rem; }
    .rocketv-sas-body p  { font-size: .7rem; }
    .rocketv-sas-cta     { display: none; }
}


@media (prefers-reduced-motion: reduce) {
    .rocketv-flame,
    .rocketv-porthole-core,
    .rocketv-nose-window,
    .rocketv-ribbon { animation: none; }
}

@media (max-width: 992px) {
    .rocketv-sas-body p {
        opacity: 1;
        max-height: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    main .modules-list li,
    .modules-cta-link { transition: none; }
}

@media (max-width: 860px) {
    .modules-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .modules-block--included::before,
    .modules-block--optional::before {
        display: none;
    }
}

@media (max-width: 600px) {
    main .modules {
        padding: 48px 0;
    }

    .modules-block {
        padding: 20px 16px;
    }

    .modules-block-label h3 {
        white-space: normal;
    }

    main .modules-list li {
        font-size: .84rem;
        padding: 10px 12px 10px 16px;
    }

    .modules-cta-link {
        font-size: .88rem;
        padding: 12px 20px;
    }

    /* Tooltips vers le bas sur mobile pour éviter le débordement haut */
    .modules-list li::after {
        bottom: auto;
        top: calc(100% + 8px);
        transform: translateX(-50%) translateY(-6px);
    }

    .modules-list li:hover::after {
        transform: translateX(-50%) translateY(0);
    }
}


@media (max-width: 860px) {
    .method {
        padding: 64px 0 0;
    }

    .method-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .method-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .method {
        padding: 48px 0 0;
    }

    .method-step {
        padding: 18px 16px;
        gap: 12px;
    }

    .method-step-num {
        font-size: 2rem;
    }

    .method-step-body h3 {
        font-size: .88rem;
    }

    .method-step-body p {
        font-size: .79rem;
    }

    .method-header {
        margin-bottom: 28px;
    }

    .method .section-divider {
        margin-top: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .method-step {
        transition: none;
    }
}


/* ------------------------- services -------------------------- */





@media (prefers-reduced-motion: reduce) {
    .page-service .intro-text,
    .page-service .intro-text.is-crawling {
        animation: none;
        opacity: 1;
        transform: none;
        mask-image: none;
        -webkit-mask-image: none;
    }

    
}

@media (hover: none), (max-width: 960px) {
    .title-bubble .section-title-sub { opacity: 1; }
}

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }

    .layout-split {
        flex-direction: column;
        gap: 50px;
    }

    .layout-right { flex-direction: column; }

    .title-bubble {
        width: 240px;
        height: 240px;
        font-size: .95rem;
        flex: none;
    }

    .planet-info {
        width: 200px;
        height: 200px;
    }

    .planet-sphere {
        width: 200px;
        height: 200px;
    }

    .layout-split .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 200px));
        gap: 40px 28px;
    }
}

@media (max-width: 540px) {
    .title-bubble { width: 210px; height: 210px; font-size: .85rem; }

    .planet-sphere { width: 170px; height: 170px; }
    .planet-info   { width: 170px; height: 170px; padding: 0 18px; }

    .planet-info h3 { font-size: .78rem; }
    .planet-info p  { font-size: .63rem; }

    .layout-split .offers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 16px;
    }
}

/* ------------------------- offre site -------------------------- */

@media (max-width: 900px) {
    .offer-intro-block {
        height: auto;
    }

    .page-offers .offer-hero {
        padding-top: clamp(90px, 12dvh, 140px);
    }

    .offer-levels {
        grid-template-columns: 1fr;
        max-width: 480px;
        padding-bottom: 30px;
    }

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

    .offer-comparison {
        padding: 0 12px 40px;
    }

    .offer-modalities {
        padding-bottom: 300px;
    }
}

@media (max-width: 480px) {
    .offer-intro-block {
        height: auto;
    }

    .page-offers .offer-hero {
        padding-top: 100px;
    }

    .offer-card h2 {
        font-size: 1.1rem;
    }

    .offer-card p {
        font-size: .82rem;
    }

    .offer-planet img {
        width: 52px;
        height: 52px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn, .cta-btn--featured {
        text-align: center;
        transform: none;
    }

    .cta-btn--featured:hover {
        transform: translateY(-3px);
    }

    .offer-modalities {
        padding-bottom: 300px;
    }
}

/* ─── MOBILE — sticky first column ─── */
@media (max-width: 640px) {
    .offer-comparison {
        padding: 0 0 60px;
    }

    .table-wrapper {
        border-radius: 12px;
        overflow-x: auto;
        padding-top: 14px;
    }

    .offer-comparison table {
        min-width: 480px;
        width: 100%;
    }

    .offer-comparison td,
    .offer-comparison th {
        padding: 12px 12px;
        font-size: .8rem;
    }

    .offer-comparison td:first-child,
    .offer-comparison th:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
        width: 110px;
        min-width: 110px;
        max-width: 110px;
        font-size: .76rem;
        padding: 11px 10px 11px 12px;
        background: rgba(6,10,28,.97) !important;
        box-shadow: 3px 0 10px rgba(0,0,0,.45);
        white-space: normal;
        word-break: break-word;
    }

    .offer-comparison thead th:first-child {
        border-radius: 12px 0 0 0;
    }

    .offer-comparison td:not(:first-child),
    .offer-comparison th:not(:first-child) {
        min-width: 88px;
    }

    .offer-comparison .price-row th {
        font-size: .95rem;
        padding: 14px 12px;
    }

    .offer-comparison .price-row th:nth-child(3) {
        font-size: 1.05rem;
    }

    .offer-comparison thead th {
        padding-top: 20px;
        padding-bottom: 16px;
        font-size: .85rem;
    }
}


/* ------------------------- siteessentiel -------------------------- */

@media (max-width: 768px) {
	.offer-info-grid,.options-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
    .vitrine-cards {
        grid-template-columns: 1fr;
    }

    .vitrine-options-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vitrine-options-grid .option-card,
    .vitrine-options-grid .option-card:nth-child(4),
    .vitrine-options-grid .option-card:nth-child(5),
    .vitrine-options-grid .option-card:nth-child(7) {
        grid-column: span 1;
    }
}

@media (max-width: 580px) {
    .vitrine-offer-nav {
        top: 80px;
    }

    .vitrine-offer-track {
        display: none;
    }

    .vitrine-options-grid {
        grid-template-columns: 1fr;
    }

    .vitrine-cta {
        padding-bottom: 300px;
    }
}

/* ------------------------- siteepro -------------------------- */

@media (max-width: 900px) {
    .pro-cards {
        grid-template-columns: 1fr;
    }

    .pro-options-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pro-options-grid .option-card,
    .pro-options-grid .option-card:nth-child(4),
    .pro-options-grid .option-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 580px) {
    .pro-offer-nav {
        top: 80px;
    }

    .pro-options-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------- siteecustom -------------------------- */

@media (max-width: 900px) {
    .custom-cards {
        grid-template-columns: 1fr;
    }

    .custom-options-grid {
        grid-template-columns: 1fr 1fr;
    }

    .custom-options-grid .option-card,
    .custom-options-grid .option-card:nth-child(4),
    .custom-options-grid .option-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 580px) {
    .custom-offer-nav {
        top: 80px;
    }

    .custom-options-grid {
        grid-column: 1fr;
    }
}

/* ------------------------- hm -------------------------- */

@media (max-width: 1000px) {
    .hm-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hm-plans-grid {
        grid-template-columns: 1fr;
    }

    .hm-hero-cta,
    .hm-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hm-btn-secondary {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .hmg-offer-track {
        display: none;
    }

    .hmg-nav {
        top: 80px;
    }

    .hmg-nav-spacer {
        width: 60px;
    }
}

/* ------------------------- hebergement -------------------------- */

@media (max-width: 900px) {
    .heberg-infomaniak .heberg-section-inner {
        flex-direction: column;
        gap: 32px;
    }

    .heberg-badges {
        width: 100%;
    }

    .heberg-pillars-grid {
        grid-template-columns: 1fr;
    }

    .heberg-includes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .heberg-monitoring-inner {
        flex-direction: column;
        gap: 28px;
    }

    .heberg-monitoring-list {
        width: 100%;
    }
}

@media (max-width: 580px) {
    .heberg-includes-grid {
        grid-template-columns: 1fr;
    }

    .heberg-badges {
        grid-template-columns: 1fr;
    }

    .heberg-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .heberg-btn-secondary {
        justify-content: center;
    }
}

/* ------------------------- maintenance -------------------------- */

@media (max-width: 900px) {
    .maint-why-grid,
    .maint-pillars-grid,
    .maint-approach-grid,
    .maint-serenity-inner {
        grid-template-columns: 1fr;
    }

    .maint-includes-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .maint-includes-grid {
        grid-template-columns: 1fr;
    }

    .maint-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .maint-btn-secondary {
        justify-content: center;
    }
}

/* ------------------------- conseil et accompagement-------------------------- */

@media (max-width: 1000px) {
    .conseil-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .conseil-expert-grid,
    .conseil-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .conseil-domains-grid {
        grid-template-columns: 1fr;
    }

    .conseil-approach-results ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .conseil-offers-grid {
        grid-template-columns: 1fr;
    }

    .conseil-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .conseil-btn-secondary {
        justify-content: center;
    }
}

/* ------------------------- conseil -------------------------- */

@media (max-width: 900px) {
    .cw-why-grid,
    .cw-vs-grid {
        grid-template-columns: 1fr;
    }
    .cw-domains-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cw-offer-card {
        grid-template-columns: 1fr;
    }
    .cw-offer-left {
        border-right: none;
        border-bottom: 1px solid rgba(99,102,241,.20);
    }
}
@media (max-width: 580px) {
    .cw-domains-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------- accompagnement -------------------------- */


@media (max-width: 900px) {
    .acmp-why-grid,
    .acmp-philosophy-grid {
        grid-template-columns: 1fr;
    }
    .acmp-includes-grid,
    .acmp-offers-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 580px) {
    .acmp-includes-grid,
    .acmp-offers-grid {
        grid-template-columns: 1fr;
    }
    .acmp-cycle {
        flex-direction: column;
    }
    .acmp-cycle-arrow {
        transform: rotate(90deg);
    }
    .acmp-vs-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------- about -------------------------- */

@media (max-width: 900px) {
    .about-hero-layout {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    .about-subtitle {
        max-width: 100%;
    }

    .about-hero-content h1 {
        text-align: center;
    }

    .about-subtitle {
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .about-card,
    .about-single {
        padding: 26px 22px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 110px 16px 60px;
    }

    .about-hero-image img {
        width: 200px;
        height: 200px;
    }

    .about-hero-image {
        flex: 0 0 200px;
    }
}

/* ------------------------- contact -------------------------- */


@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-reassurance {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 26px 22px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 110px 16px 120px;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

/* ------------------------- siteexemple -------------------------- */

@media (max-width: 768px) {
    .exemples-grid { grid-template-columns: 1fr; }
    .browser-preview { height: 200px; }
}