/* ============================================================
   NEOFLUX — Homepage "SIGNAL Pro" Redesign
   css/index.css — All homepage-specific styles
   ============================================================ */

/* ============================================================
   HOMEPAGE : Header transparent overlay le slider plein écran
   ============================================================ */

/* Top-bar fixée en haut */
.page-home .top-bar {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    z-index: 1001;
    background: rgba(8, 12, 20, 0.75);
    backdrop-filter: blur(10px);
}

/* Main-header fixée juste sous la top-bar */
.page-home .main-header {
    position: fixed !important;
    top: 35px;                 /* = hauteur réelle de la .top-bar (33px laissait 2px de recouvrement) */
    left: 0; right: 0;
    z-index: 1000;
    background: #ffffff7a !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: none !important;
    transition: background 0.4s, border-color 0.4s !important;
}

/* Nav links blancs sur le slider sombre */
.page-home .main-header:not(.scrolled) .nav-link,
.page-home .main-header:not(.scrolled) .nav-item > a {
    color: rgba(255,255,255,0.88) !important;
}

.page-home .main-header:not(.scrolled) .nav-link:hover,
.page-home .main-header:not(.scrolled) .nav-link.active,
.page-home .main-header:not(.scrolled) .nav-item > a:hover {
    color: #ffffff !important;
}

/* Bouton Devis sur fond sombre */
.page-home .main-header:not(.scrolled) .btn-nav,
.page-home .main-header:not(.scrolled) .btn.btn-primary {
    background: var(--primary-red) !important;
    color: #ffffff !important;
}

/* Une fois scrollé → fond blanc solide */
.page-home .main-header.scrolled {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
}

.page-home .main-header.scrolled .nav-link,
.page-home .main-header.scrolled .nav-item > a {
    color: var(--secondary-dark) !important;
}

/* ── CSS Variables ── */
:root {
    --ix-red:     #D42F2F;
    --ix-red-d:   #b52525;
    --ix-red-rgb: 212, 47, 47;
    --ix-dark:    #080c14;
    --ix-dark2:   #0d1220;
    --ix-dark3:   #111827;
    --ix-card:    #131b2e;
    --ix-border:  rgba(255,255,255,0.08);
    --ix-white:   #ffffff;
    --ix-grey:    #94a3b8;
}

/* ============================================================
   HERO
   ============================================================ */
.ix-hero {
    position: relative;
    background: var(--ix-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 80px;
}

/* Background decorations */
.ix-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ix-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.ix-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.ix-glow-1 {
    width: 600px; height: 600px;
    background: rgba(212, 47, 47, 0.12);
    top: -200px; left: -200px;
}

.ix-glow-2 {
    width: 400px; height: 400px;
    background: rgba(212, 47, 47, 0.07);
    bottom: 0; right: 10%;
}

.ix-watermark {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28vw;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    line-height: 1;
    letter-spacing: -0.05em;
    white-space: nowrap;
    user-select: none;
}

/* Hero inner 2-col */
.ix-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 1;
}

/* Badge */
.ix-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.2rem;
    background: rgba(212, 47, 47, 0.1);
    border: 1px solid rgba(212, 47, 47, 0.3);
    color: #fca5a5;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.ix-badge-dot {
    width: 6px; height: 6px;
    background: var(--ix-red);
    border-radius: 50%;
    animation: ix-pulse 2s infinite;
}

@keyframes ix-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.5); }
}

/* Title */
.ix-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.ix-hero-title span {
    color: var(--ix-red);
}

.ix-hero-sub {
    font-size: 1.05rem;
    color: var(--ix-grey);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* CTA buttons */
.ix-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.ix-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: var(--ix-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--ix-red);
}

.ix-btn-primary:hover {
    background: var(--ix-red-d);
    border-color: var(--ix-red-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 47, 47, 0.4);
}

.ix-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.ix-btn-ghost:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
}

/* Hero Visual — stacked images */
.ix-hero-visual {
    position: relative;
    height: 480px;
}

.ix-visual-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.08);
}

.ix-vc-main {
    width: 320px; height: 360px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.ix-vc-2 {
    width: 195px; height: 215px;
    bottom: 20px; left: 0;
    z-index: 2;
    transform: rotate(-5deg);
}

.ix-vc-3 {
    width: 175px; height: 195px;
    bottom: 30px; right: 0;
    z-index: 2;
    transform: rotate(5deg);
}

.ix-visual-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.ix-stat-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.1rem;
    background: rgba(13,18,32,0.92);
    border: 1px solid rgba(212, 47, 47, 0.35);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 6;
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    white-space: nowrap;
    top: 20px; right: -10px;
}

.ix-pill-2 {
    top: auto;
    bottom: 10px;
    right: auto;
    left: -10px;
}

.ix-stat-pill i {
    color: var(--ix-red);
    font-size: 1rem;
}

.ix-stat-pill div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ix-stat-pill div strong {
    font-size: 1rem;
    color: #ffffff;
}

.ix-stat-pill div span {
    font-size: 0.68rem;
    color: var(--ix-grey);
    font-weight: 500;
}

/* Stats bar */
.ix-hero-stats {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--ix-border);
    background: rgba(255,255,255,0.025);
    backdrop-filter: blur(10px);
}

.ix-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}

.ix-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 3rem;
}

.ix-snum {
    font-size: 1.9rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.ix-slabel {
    font-size: 0.7rem;
    color: var(--ix-grey);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.ix-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--ix-border);
    flex-shrink: 0;
}

/* ============================================================
   SHARED SECTION HEADER
   ============================================================ */
.ix-section-head {
    margin-bottom: 3.5rem;
}

.ix-section-head.ix-center {
    text-align: center;
}

.ix-section-head.ix-center p {
    margin-left: auto;
    margin-right: auto;
}

.ix-section-badge {
    display: inline-block;
    padding: 0.32rem 1rem;
    background: rgba(212, 47, 47, 0.08);
    color: var(--ix-red);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    border: 1px solid rgba(212, 47, 47, 0.2);
    margin-bottom: 0.9rem;
}

.ix-section-badge.ix-badge-white {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    border-color: rgba(255,255,255,0.15);
}

.ix-section-title {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 0.9rem;
}

.ix-section-title span { color: var(--ix-red); }
.ix-section-title.ix-title-white { color: #ffffff; }

.ix-section-head p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.ix-services {
    background: #f8fafc;
    padding: 6rem 0;
}

.ix-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ix-srv-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    display: block;
}

.ix-srv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ix-red), #ef4444);
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 0;
}

.ix-srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(212, 47, 47, 0.18);
    border-color: var(--ix-red);
}

.ix-srv-card:hover::before { opacity: 1; }

.ix-srv-card > * { position: relative; z-index: 1; }

.ix-srv-num {
    font-size: 3.8rem;
    font-weight: 900;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    margin-bottom: -0.8rem;
    transition: color 0.35s;
}

.ix-srv-card:hover .ix-srv-num { color: rgba(255,255,255,0.08); }

.ix-srv-icon {
    width: 50px; height: 50px;
    background: rgba(212, 47, 47, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ix-red);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    transition: all 0.35s;
}

.ix-srv-card:hover .ix-srv-icon {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.ix-srv-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    transition: color 0.35s;
}

.ix-srv-card:hover h3 { color: #ffffff; }

.ix-srv-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.35s;
}

.ix-srv-card:hover p { color: rgba(255,255,255,0.78); }

.ix-srv-arrow {
    display: inline-flex;
    width: 34px; height: 34px;
    background: rgba(212, 47, 47, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--ix-red);
    font-size: 0.8rem;
    transition: all 0.35s;
}

.ix-srv-card:hover .ix-srv-arrow {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    transform: translateX(4px);
}

/* ============================================================
   WHY NEOFLUX
   ============================================================ */
.ix-why {
    padding: 6rem 0;
    background: #ffffff;
}

.ix-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ix-why-img {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    /* Même taille fixe que l'image originale */
    height: 500px;
}

/* ── Slider : remplit le conteneur (même taille que l'ancienne image) ── */
.ix-why-slider {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px;
    overflow: hidden !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.ix-why-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    transition: opacity .8s ease-in-out;
    pointer-events: none;
}

.ix-why-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.ix-why-slide img,
.ix-why-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 20px;
}

/* ── Points indicateurs ── */
.ix-why-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    padding: 7px 14px;
    background: rgba(0,0,0,.32);
    backdrop-filter: blur(10px);
    border-radius: 50px;
}

.ix-why-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}

.ix-why-dot:hover { background: rgba(255,255,255,.85); }
.ix-why-dot.active {
    background: #fff;
    width: 22px;
    border-radius: 50px;
}

.ix-why-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--ix-red);
    color: #ffffff;
    padding: 1.3rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(212, 47, 47, 0.45);
    text-align: center;
    z-index: 5;        /* Reste TOUJOURS au-dessus des slides + flèches + dots */
    pointer-events: none; /* Pas d'interférence avec les clics du slider */
}

.ix-wb-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.ix-wb-txt {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.88;
    margin-top: 0.2rem;
}

.ix-why-desc {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.ix-why-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ix-why-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.ix-why-feat:hover {
    border-color: rgba(212, 47, 47, 0.3);
    background: rgba(212, 47, 47, 0.03);
}

.ix-wf-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    background: rgba(212, 47, 47, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ix-red);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.ix-why-feat:hover .ix-wf-icon {
    background: var(--ix-red);
    color: #ffffff;
}

.ix-why-feat h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.ix-why-feat p {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.ix-portfolio {
    padding: 6rem 0;
    background: #0f172a;
}

.ix-portfolio .ix-section-title { color: #ffffff; }
.ix-portfolio .ix-section-head p { color: rgba(255,255,255,0.55); }

.ix-port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 270px 270px;
    gap: 1rem;
    margin-bottom: 3rem;
}

.ix-port-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.ix-port-lg {
    grid-row: span 2;
}

.ix-port-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.ix-port-item:hover img { transform: scale(1.07); }

.ix-port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s;
}

.ix-port-item:hover .ix-port-overlay { opacity: 1; }

.ix-port-cat {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fca5a5;
    background: rgba(212, 47, 47, 0.2);
    border: 1px solid rgba(212, 47, 47, 0.4);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 0.4rem;
}

.ix-port-overlay h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.ix-port-cta { text-align: center; }

/* ============================================================
   PROCESS
   ============================================================ */
.ix-process {
    padding: 6rem 0;
    background: var(--ix-dark3);
}

.ix-proc-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.ix-proc-step {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.ix-proc-step:hover {
    background: rgba(212, 47, 47, 0.07);
    border-color: rgba(212, 47, 47, 0.3);
    transform: translateY(-5px);
}

.ix-proc-num {
    font-size: 3.2rem;
    font-weight: 900;
    color: rgba(255,255,255,0.035);
    line-height: 1;
    margin-bottom: -0.4rem;
    transition: color 0.3s;
}

.ix-proc-step:hover .ix-proc-num { color: rgba(212, 47, 47, 0.12); }

.ix-proc-icon {
    width: 54px; height: 54px;
    background: rgba(212, 47, 47, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ix-red);
    font-size: 1.35rem;
    margin: 0 auto 1.2rem;
    transition: all 0.3s;
}

.ix-proc-step:hover .ix-proc-icon {
    background: var(--ix-red);
    color: #ffffff;
}

.ix-proc-step h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.ix-proc-step p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    margin: 0;
}

.ix-proc-arrow {
    color: rgba(212, 47, 47, 0.4);
    font-size: 1.4rem;
    padding: 0 0.5rem;
    flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.ix-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #D42F2F 0%, #a81f1f 100%);
    position: relative;
    overflow: hidden;
}

.ix-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.ix-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.ix-cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.ix-cta-content p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    margin: 0;
}

.ix-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.ix-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: #ffffff;
    color: var(--ix-red);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.ix-cta-btn:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-2px);
}

.ix-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35);
    transition: all 0.3s;
}

.ix-cta-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .ix-stat { padding: 0 2rem; }
}

@media (max-width: 1024px) {
    .ix-srv-grid { grid-template-columns: repeat(2, 1fr); }
    .ix-proc-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .ix-proc-arrow { display: none; }
    .ix-port-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px 220px;
    }
    .ix-port-lg { grid-row: span 2; }
}

@media (max-width: 768px) {
    .ix-hero { padding-top: 70px; }

    .ix-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 0 2rem;
    }

    .ix-hero-visual { display: none; }
    .ix-hero-actions { justify-content: center; }
    .ix-badge { justify-content: center; }
    .ix-hero-sub { margin: 0 auto 2.5rem; }

    .ix-stats-row { flex-wrap: wrap; gap: 0.5rem; padding: 1rem 0; }
    .ix-stat { padding: 0.5rem 1.5rem; }
    .ix-stat-sep { display: none; }

    .ix-srv-grid { grid-template-columns: 1fr; }

    .ix-why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ix-why-img img { height: 300px; }
    .ix-why-badge { right: 1rem; bottom: 1rem; }
    .ix-why-feats { grid-template-columns: 1fr; }

    .ix-port-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }
    .ix-port-lg { grid-row: span 1; }

    .ix-proc-grid { grid-template-columns: 1fr; }

    .ix-cta-inner { flex-direction: column; text-align: center; }
    .ix-cta-actions { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .ix-port-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .ix-port-item { height: 220px; }
    .ix-port-lg { height: 280px; }
}
