/* ──────────────────────────────────────────
   ACCUR8 — main.css  (consolidated / fixed)
────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green:      #3AE060;
    --green-mid:  #1e9640;
    --green-dark: #0d5c2a;
    --navy:       #0a1628;
    --black:      #0D0D0D;
    --white:      #FFFFFF;
    --gray:       #6B6B6B;

    --px: clamp(24px, 14.5vw, 250px);

    --container-wide: 1380px;
    --container-main: 1180px;
    --container-text: 980px;
}

html { scroll-behavior: smooth; }
html, body { background: #FFFFFF !important; }

body {
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--black);
    overflow-x: hidden;
}

/* ── GLOBAL WRAPPERS ── */
.container-wide,
.container-main,
.container-text {
    width: min(calc(100% - (var(--px) * 2)), 100%);
    margin-inline: auto;
}

.container-wide { max-width: var(--container-wide); }
.container-main { max-width: var(--container-main); }
.container-text { max-width: var(--container-text); }

/* ── HEADER ── */
header {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0 var(--px);
    background: transparent;
    animation: fadeDown 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

.logo { display: flex; align-items: center; }
.logo img { height: 71px; display: block; }
.logo a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 20px;
}

.menu-btn {
    width: 283px;
    height: 178.842px;
    background: linear-gradient(350deg, #021E3C 6.1%, #38E557 88.15%);
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
    border: none;
    color: #FFF;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 178.842px;
    text-transform: lowercase;
    cursor: pointer;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.menu-btn:hover {
    opacity: 1;
    background: linear-gradient(350deg, #021E3C 6.1%, #38E557 92.15%);
}

/* ── BACKDROP ── */
.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.backdrop.show {
    opacity: 1;
    pointer-events: all;
}

/* ── NAV OVERLAY ── */
.nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: min(540px, 100vw);
    height: 100vh;
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.65s cubic-bezier(0.77,0,0.175,1);
    overflow: hidden;
}

.nav-overlay.open { transform: translateX(0); }

.nav-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(168deg, #3AE060 0%, #18a040 26%, #0d5c2a 52%, #051a0b 78%, #020d06 100%);
}

.nav-wave {
    position: absolute;
    inset: 0;
    background-position: right bottom;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

.nav-content {
    position: relative;
    z-index: 2;
    padding: 42px 56px 52px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nav-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 68px;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    color: white;
    transition: opacity 0.2s;
}

.close-btn:hover { opacity: 0.55; }

.close-btn img {
    width: 44px;
    height: 44px;
    display: block;
}

.back-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--black);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li a {
    display: block;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #FFF;
    text-decoration: none;
    padding: 14px 0;
    line-height: 40px;
    transition: padding-left 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
    opacity: 0.9;
}

.nav-links li a:hover {
    opacity: 1;
    padding-left: 14px;
}

.nav-cta {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.btn-nav-cta {
    display: inline-block;
    width: fit-content;
    border: 2px solid #38E557;
    color: white;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 11px 28px;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.2s, color 0.2s;
}

.btn-nav-cta:hover {
    background: #38E557;
    color: #000;
}

.nav-phone {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
}

/* ── HERO ── */
.hero-wrap {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.hero {
    height: calc(100vh - 178.842px);
    min-height: calc(100vh - 178.842px);
    max-height: calc(100vh - 178.842px);
    overflow: clip;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: clamp(100px, 14vh, 200px) var(--px) 120px;
    background: transparent;
}

.hero-graphic {
    position: absolute;
    top: 0;
    right: -2vw;
    width: 55vw;
    height: 85%;
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.1s;
}

.hero-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(48px, 6.5vw, 80px);
    font-weight: 200;
    line-height: 110%;
    letter-spacing: -3.2px;
    color: #000;
    margin-bottom: 22px;
    max-width: 850px;
}

.hero-subtitle {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #000;
    line-height: 40px;
    margin-bottom: 52px;
}

.hero-bottom {
    display: flex;
    align-items: center;
    gap: 90px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #38E557;
    color: var(--black);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 7px 28px;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #0a1628;
    transform: translateY(-2px);
    color: var(--white);
}

.hero-side-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 24px;
    max-width: 650px;
    text-align: right;
}

.scroll-indicator {
    position: absolute;
    bottom: clamp(30px, 4vh, 75px);
    left: var(--px);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 4;
    cursor: pointer;
}

.scroll-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scroll-circle svg {
    width: 12px;
    height: 12px;
    color: var(--black);
}

/* ── NOT FOR EVERYONE ── */
.section-nfe {
    background: var(--green);
    padding: 80px var(--px) 0;
    overflow: hidden;
}

.nfe-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.nfe-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(38px, 4.5vw, 68px);
    font-weight: 200;
    letter-spacing: -0.03em;
    color: var(--black);
}

.nfe-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    color: var(--black);
    text-align: right;
    padding-top: 8px;
    max-width: 620px;
    justify-self: end;
}

.nfe-visual-wrap {
    position: relative;
    display: block;
}

.nfe-complexity-img {
    width: 75%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.nfe-bullets {
    position: absolute;
    left: 45%;
    top: 58%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 294px;
}

.nfe-bullets ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nfe-bullets ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    line-height: 24px;
}

.nfe-bullets ul li::before {
    content: "\2022";
    color: var(--black);
    flex-shrink: 0;
    font-size: 16px;
    line-height: 24px;
}

/* ── BINARY BAND ── */
.binary-band {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.binary-band__img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── WHAT WE DO ── */
.section-wwd {
    background: #021E3C;
    padding: 50px var(--px);
}

.wwd-title {
    font-family: "Sora", sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -3.2px;
    color: #FFF;
    margin-bottom: 24px;
}

.wwd-subtitle {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
    color: #FFF;
    max-width: 760px;
    margin-bottom: 64px;
}

.wwd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-pill {
    display: inline-block;
    width: fit-content;
    border: 2px solid #38E557;
    border-radius: 25px;
    color: #FFF;
    padding: 8px 24px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 32px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.step-pill:hover {
    background: #38E557;
    color: var(--black);
}

.step-sub {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #FFF;
    padding-left: 4px;
}

.wwd-why {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #FFF;
    text-align: right;
}

.why-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #FFF;
    text-align: right;
}

/* ── WAVE WRAP ── */
.wave-wrap {
    position: relative;
    overflow: hidden;
}

.wave-sections {
    position: absolute;
    left: -5%;
    top: 0;
    width: clamp(440px, 48vw, 800px);
    height: 100%;
    object-fit: cover;
    object-position: left center;
    pointer-events: none;
    z-index: 3;
}

/* ── BENEFITS ── */
.section-benefits {
    background: white;
    padding: 150px var(--px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.benefits-title {
    font-family: "Sora", sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -3.2px;
    color: #000;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item { text-align: right; }

.benefit-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;

    font-weight: 600;
    line-height: 24px;
    color: #000;
    margin-bottom: 6px;
}

.benefit-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
    color: #000;
    text-align: right;
}

/* ── OTHER BENEFITS ── */
.section-ob {
    background: var(--navy);
    padding: 150px var(--px);
    position: relative;
    overflow: hidden;
}

.ob-title {
    font-family: "Sora", sans-serif;
    font-size: 80px;
    font-weight: 200;
    line-height: 110%;
    letter-spacing: -3.2px;
    color: #FFF;
    text-align: right;
    margin-bottom: 60px;
}

.ob-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 480px;
    margin-left: auto;
}

.ob-item { text-align: right; }

.ob-item-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #FFF;
    margin-bottom: 4px;
}

.ob-item-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
    color: #FFF;
    text-align: right;
}

/* ── INSIGHTS ── */
.section-insights {
    background: white;
    padding: 100px var(--px) 120px;
}

.container-insights {
    width: min(calc(100% - 140px), 1320px);
    margin-inline: auto;
}

.insights-heading {
    font-family: "Sora", sans-serif;
    font-size: 80px;
    font-weight: 200;
    letter-spacing: -3.2px;
    line-height: 110%;
    color: var(--green);
    margin-bottom: 52px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.insight-card {
    position: relative;
    height: 350px;
    background: #fff;
    box-shadow: 4px 4px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 4px 8px 32px rgba(0,0,0,0.15);
}

.insight-card__dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 120px;
    background-image: url('../points-gris.png');
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    pointer-events: none;
}

.insight-card__body {
    position: relative;
    z-index: 2;
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.insight-tag {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--green);
}

.insight-text {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    font-weight: 200;
    line-height: 110%;
    color: var(--black);
}

.insight-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
}

.insight-readmore__circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--black);
    transition: transform 0.2s;
}

.insight-card:hover .insight-readmore__circle {
    transform: translateX(4px);
}

.insights-cta {
    margin-top: 56px;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.insights-cta .btn-primary {
    min-width: 260px;
    text-align: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 999px;
}

/* ── TALK TO US ── */
.section-ttu {
    background: var(--green);
    padding: 100px var(--px) 120px;
}

.ttu-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;

}

.ttu-title {
    font-family: "Sora", sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: var(--black);
    margin-bottom: 24px;
}

.ttu-subtitle {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: -1px;
    color: var(--black);
}

/* CF7 */
.ttu-form-wrap .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ttu-form-wrap .wpcf7-form > p { margin: 0 0 16px 0; }

.ttu-form-wrap .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.ttu-form-wrap .form-col {
    display: flex;
    flex-direction: column;
}

.ttu-form-wrap label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 28.6px;
    color: var(--black);
}

.ttu-form-wrap label br { display: none; }
.ttu-form-wrap .wpcf7-form-control-wrap { display: block; }

.ttu-form-wrap input[type="text"],
.ttu-form-wrap input[type="email"],
.ttu-form-wrap input[type="tel"],
.ttu-form-wrap textarea {
    width: 100%;
    background: rgba(240,240,240,0.7);
    border: none;
    outline: none;
    padding: 14px 16px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--black);
    transition: background 0.2s;
    box-sizing: border-box;
}

.ttu-form-wrap input::placeholder,
.ttu-form-wrap textarea::placeholder {
    color: rgba(0,0,0,0.35);
}

.ttu-form-wrap input:focus,
.ttu-form-wrap textarea:focus {
    background: rgba(255,255,255,0.85);
}

.ttu-form-wrap textarea {
    resize: vertical;
    min-height: 140px;
}

.ttu-form-wrap .wpcf7-submit {
    align-self: flex-start;
    background: white;
    color: var(--black);
    border: 1.5px solid var(--black);
    border-radius: 100px;
    padding: 12px 36px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.ttu-form-wrap .wpcf7-submit:hover {
    background: var(--black);
    color: white;
}

/* ── FOOTER ── */
footer {
    background: #021E3C;
    padding: 64px var(--px) 36px;
}

.footer-row1 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.footer-brand {
    display: flex;
    align-items: flex-end;
    gap: 28px;
}

.footer-logo {
    height: 81px;
    display: block;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    opacity: 1;
    transition: opacity 0.2s;
    margin-top: 4px;
}

.footer-linkedin img {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-linkedin:hover { opacity: 0.8; }
.footer-linkedin img { display: block; }

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 56px;
    flex-wrap: wrap;
}

.footer-nav ul li a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.27px;
    color: #FFF;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-nav ul li a:hover { opacity: 0.7; }

.footer-tagline {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    font-weight: 200;
    line-height: 110%;
    color: #FFF;
    margin-bottom: 48px;
}

.footer-row2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-row2-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-built {
    font-family: "Sora", sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.5px;
    color: #FFF;
}

.footer-phone {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.27px;
    color: #FFF;
}

.footer-row2-right {
    display: flex;
    align-items: flex-start;
}

.btn-footer-cta {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 100px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-footer-cta:hover {
    background: #2dd654;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.27px;
    color: rgba(255,255,255,0.5);
}

.footer-policy {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.27px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-policy:hover { color: #FFF; }

/* ── BLOG LAYOUT ── */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    padding: 140px var(--px) 100px;
}

.archive-header { margin-bottom: 52px; }

.archive-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 200;
    letter-spacing: -0.03em;
    color: var(--black);
}

.archive-count {
    font-size: 13px;
    color: var(--gray);
    margin-top: 8px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.archive-pagination { margin-top: 52px; }

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: var(--black);
    font-size: 13px;
    transition: all 0.2s;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
    background: var(--green);
    border-color: var(--green);
}

.no-posts {
    padding: 40px 0;
    color: var(--gray);
}

/* ── SINGLE ARTICLE ── */
.single-article { max-width: 1000px; }

.single-article__title {
    font-family: "Sora", sans-serif;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 200;
    letter-spacing: -0.03em;
    color: var(--black);
    margin: 16px 0 24px;
}

.single-article__meta {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.single-article__thumb { margin-bottom: 40px; }

.single-article__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.single-article__content {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
}

.single-article__content h2,
.single-article__content h3 {
    font-family: "Sora", sans-serif;
    font-weight: 200;
    margin: 32px 0 16px;
}

.single-article__content p { margin-bottom: 10px; }

.single-article__content ul {     margin-left: 25px;
	margin-bottom: 20px;
 }


.single-article__content a { color: var(--green);
    font-size: 16px;
    font-weight: 400;
}

.single-article__nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid #e5e5e5;
    flex-wrap: wrap;
}

.article-nav-link {
    font-size: 13px;
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
    max-width: 48%;
}

.article-nav-link:hover { color: var(--green-mid); }
.article-nav-link--next { text-align: right; margin-left: auto; }

/* ── SIDEBAR ── */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.sidebar-widget__title,
.sidebar-widget h4 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 16px;
    margin-top: 0;
}

.sidebar-search {
    display: flex;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.sidebar-search__input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    outline: none;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.sidebar-search__btn {
    background: var(--black);
    border: none;
    padding: 0 14px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.sidebar-search__btn:hover { background: var(--green-mid); }

.sidebar-recent {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-recent__item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sidebar-recent__link {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.2s;
}

.sidebar-recent__link:hover { color: var(--green-mid); }

.sidebar-recent__date {
    font-size: 13px;
    color: var(--gray);
}

.sidebar-cats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-cats__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 16px;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}

.sidebar-cats__link:hover { color: var(--green-mid); }

.sidebar-cats__count {
    font-size: 13px;
    color: var(--gray);
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────
   PLATFORM PAGE
───────────────────────────────────────── */
.hero-wrap--platform {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-graphic--platform {
    position: absolute;
    top: 0;
    right: 0;
    width: min(42vw, 620px);
    height: 100%;
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.hero-inner--platform .hero-title {
    max-width: var(--container-text);
}

.hero-inner--platform .hero-bottom {
    display: block;
    margin-bottom: 75px;
}

.section-platform-intro {
    background: var(--green);
    padding: 88px var(--px) 78px;
}

.platform-intro-block {
    max-width: var(--container-wide);
    margin: 64px 5px 64px 5px;
}

.platform-eyebrow {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
}

.platform-eyebrow--light { color: #fff; }

.platform-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(42px, 4.8vw, 74px);
    font-weight: 200;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--black);
}

.platform-intro-block .platform-title {
    margin-bottom: 50px;
}

.platform-title--secondary {
    margin-bottom: 50px;
}

.platform-copy {
    max-width: 620px;
    margin-left: auto;
    text-align: right;
}

.platform-problem-copy {
    max-width: 760px;
}

.wysiwyg-content {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--black);
}

.wysiwyg-content p { margin: 0 0 18px; }
.wysiwyg-content p:last-child { margin-bottom: 0; }
.wysiwyg-content strong { font-weight: 700; }

.wysiwyg-content ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.wysiwyg-content li { margin-bottom: 10px; }

.section-platform-ai {
    background: #021E3C;
    padding: 88px var(--px) 92px;
    position: relative;
}

.platform-ai-inner {
    margin: 0 auto;
}

.platform-ai-eyebrow {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--green);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.platform-ai-title {
    font-family: "Sora", sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #fff;
    max-width: var(--container-text);
    margin-bottom: 100px;
}

.platform-ai-copy {
    max-width: var(--container-main);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
    color: #fff;
    margin-bottom: 54px;
}

.platform-ai-copy p { margin: 0; }

.platform-ai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 28px;
    border-radius: 999px;
    background: var(--green);
    color: var(--black);
    text-decoration: none;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    transition: transform 0.2s, background 0.2s;
}

.platform-ai-btn:hover {
    transform: translateY(-2px);
    background: #2dd654;
}

.section-platform-features {
    position: relative;
    overflow: hidden;
    background: var(--green);
    padding: 96px var(--px) 120px;
}

.platform-features-inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.platform-features-eyebrow {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    margin: 0 0 18px;
}

.platform-features-title {
    font-family: "Sora", sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--black);
    margin: 0 0 72px;
}

.platform-features-list { display: block; }

.platform-feature {
    max-width: var(--container-text);
    margin-bottom: 72px;
}

.platform-feature:last-child { margin-bottom: 0; }

.platform-feature-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1;
    color: var(--black);
    margin: 0 0 14px;
}

.platform-feature-subtitle {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
    color: var(--black);
    margin: 0 0 30px;
    max-width: var(--container-text);
}

.platform-feature-text {
    max-width: var(--container-text);
    margin-bottom: 32px;
}

.platform-feature-text p {
    margin: 0 0 32px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
    color: var(--black);
}

.platform-feature-text p:last-child { margin-bottom: 0; }

.platform-feature-example {
    max-width: var(--container-text);
}

.platform-feature-example-label {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
}

.platform-feature-example-text {
    margin: 0;
    max-width: var(--container-text);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 200;
    font-size: 30px;
    line-height: 30px;
    color: var(--black);
}

.platform-features-wave {
    position: absolute;
    top: 0;
    right: 0;
    width: min(31vw, 380px);
    height: 100%;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

/* ─────────────────────────────────────────
   DATA VIRTUALIZATION PAGE
───────────────────────────────────────── */
.hero-wrap--dv {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}

.hero-graphic--dv {
    position: absolute;
    top: 0;
    right: 0;
    width: min(42vw, 620px);
    height: 100%;
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.hero-inner--dv {
    height: calc(100vh - 178.842px);
    min-height: calc(100vh - 178.842px);
    max-height: calc(100vh - 178.842px);
    overflow: clip;
    padding: clamp(100px, 14vh, 200px) var(--px) 120px;
    position: relative;
}

.hero-inner--dv .hero-title { max-width: 760px; }
.hero-inner--dv .hero-subtitle { max-width: 620px; }

.hero-inner--dv .hero-bottom {
    display: block;
    margin-bottom: 52px;
}

.section-dv-intro {
    background: var(--green);
    padding: 86px var(--px) 88px;
}

.dv-intro-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
}

.dv-intro-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(42px, 4.8vw, 72px);
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--black);
    margin: 0 0 34px;
    max-width: 720px;
}

.dv-intro-copy {
    max-width: 980px;
    margin-left: auto;
    text-align: right;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--black);
}

.dv-intro-copy p { margin: 0 0 16px; }
.dv-intro-copy p:last-child { margin-bottom: 0; }

.section-dv-why {
    background: #f4f4f4;
    padding: 92px var(--px) 80px;
}

.dv-why-grid {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(420px, 680px);
    gap: 72px;
    align-items: start;
    max-width: var(--container-wide);
    margin: 0 auto;
}

.dv-why-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: clamp(42px, 4.5vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--black);
    margin: 0;
}

.dv-why-copy {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--black);
}

.dv-why-copy p { margin: 0 0 18px; }
.dv-why-copy p:last-child { margin-bottom: 0; }
.dv-why-copy strong { font-weight: 700; }

.section-dv-ai {
    background: #021E3C;
    padding: 90px var(--px) 96px;
}

.dv-ai-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
}

.dv-ai-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: clamp(46px, 5vw, 80px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 42px;
    max-width: 760px;
}

.dv-ai-copy {
    max-width: var(--container-wide);
    color: #fff;
}

.dv-ai-copy p {
    margin: 0 0 26px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: 0;
    color: #fff;
}

.dv-ai-copy p:last-child { margin-bottom: 0; }

.dv-ai-copy strong {
    display: block;
    margin: 18px 0 6px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
    color: #fff;
}

.dv-ai-copy h3 {
    margin: 40px 0 0 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}


.section-dv-enables {
    position: relative;
    overflow: hidden;
    background: var(--green);
    padding: 96px var(--px) 110px;
}

.dv-enables-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-wide);
    margin: 0 auto;
}

.dv-enables-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--black);
    margin: 0 0 26px;
    max-width: var(--container-text);
}

.dv-enables-intro {
    max-width: var(--container-text);
    margin-bottom: 34px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--black);
}

.dv-enables-intro p { margin: 0; }

.dv-enables-content {
    margin-bottom: 50px;
    max-width: var(--container-text);
}

.dv-enables-content .dv-enable-item {
    margin-bottom: 75px;
    max-width: var(--container-text);
}

.dv-enables-content .dv-enable-item:last-child {
    margin-bottom: 34px;
}

.dv-enables-content h3 {
    margin: 40px 0 0 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
}

.dv-enables-content p {
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--black);
}

.dv-enables-wave {
    position: absolute;
    top: 0;
    right: 0;
    width: min(55vw, 700px);
    height: 100%;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.btn-primary--white {
    background: #fff;
    color: var(--black);
}

.btn-primary--white:hover {
    background: #f3f3f3;
    color: var(--black);
}

/* ─────────────────────────────────────────
   ABOUT US PAGE
───────────────────────────────────────── */
.hero-wrap--about {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}

.hero-graphic--about {
    position: absolute;
    top: 0;
    right: 0;
    width: min(42vw, 620px);
    height: 100%;
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.hero-inner--about {
    height: calc(100vh - 178.842px);
    min-height: calc(100vh - 178.842px);
    max-height: calc(100vh - 178.842px);
    overflow: clip;
    padding: clamp(100px, 14vh, 200px) var(--px) 120px;
    position: relative;
    background: transparent;
}

.hero-inner--about .hero-content {
    max-width: 1320px;
}

.hero-inner--about .hero-title {
    max-width: 1320px;
    font-size: clamp(56px, 6vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 34px;
}

.hero-subtitle--about {
    max-width: 640px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.45;
    color: var(--black);
    margin-bottom: 40px;
}

.hero-subtitle--about p {
    margin: 0 0 16px;
}

.hero-subtitle--about p:last-child {
    margin-bottom: 0;
}

.hero-inner--about .hero-bottom {
    display: block;
    margin-bottom: 0;
}

/* Shared width helpers for About sections */
.about-upstream-inner,
.about-how-inner {
    max-width: var(--container-main);
}

.about-upstream-title,
.about-how-title {
    max-width: 1320px;
}

.about-upstream-copy,
.about-how-copy {
    max-width: 1320px;
}

.section-about-trusted .container-main,
.section-about-how .container-main,
.section-about-what .container-main {
    width: min(calc(100% - 80px), var(--container-main));
    margin-inline: auto;
}

/* Trusted */
.section-about-trusted {
    background: var(--green);
    padding: 88px var(--px) 120px;
}

.about-trusted-inner {
    max-width: var(--container-main);
}

.about-trusted-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(44px, 5vw, 74px);
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--black);
    max-width: 1320px;
    margin-bottom: 90px;
}

.about-trusted-copy {
    max-width: 1320px;
    margin: 0 auto 90px;
    text-align: right;
    padding-left: 25%;
}

.about-trusted-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px;
    align-items: center;
    margin: 90px auto;
}

.about-trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-trusted-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Upstream */
.section-about-upstream {
    background: var(--green);
    padding: 0 var(--px) 84px;
}

.about-upstream-inner {
    max-width: var(--container-main);
}

.about-upstream-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(40px, 4.8vw, 68px);
    font-weight: 200;
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: var(--black);
    max-width: 760px;
    margin-bottom: 90px;
}

.about-upstream-copy {
    max-width: 620px;
}

/* How */
.section-about-how {
    background: #021E3C;
    padding: 140px var(--px);
}

.about-how-inner {
    max-width: var(--container-main);
}

.about-how-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 40px;
}

.about-how-copy {
    max-width: 100%;
}

.about-how-copy p {
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
    color: #fff;
}

.wysiwyg-content--light,
.wysiwyg-content--light p,
.wysiwyg-content--light li,
.wysiwyg-content--light strong,
.wysiwyg-content--light a {
    color: #fff;
}

/* What */
.section-about-what {
    background: #f4f4f4;
    padding: 92px var(--px) 100px;
}

.about-what-grid {
    max-width: var(--container-main);
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 620px);
    gap: 72px;
    align-items: start;
}

.about-what-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--black);
}

.about-what-copy {
    max-width: 620px;
}

.about-what-copy ul {
    margin-top: 18px;
}

/* Leadership */
.section-about-leadership {
    position: relative;
    overflow: hidden;
    background: #021E3C;
    padding: 90px 40px 110px;
}

.about-leadership-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: min(36vw, 420px);
    height: 100%;
    background-image: url('../wave-sections.webp');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    opacity: 0.9;
    pointer-events: none;
}

.about-leadership-inner {
    position: relative;
    z-index: 2;
    width: min(100%, 1399px);
    margin: 0 auto;
}

.about-leadership-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(52px, 5vw, 80px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
    text-align: right;
    margin-bottom: 36px;
}

.about-leadership-intro {
    max-width: 760px;
    margin: 0 0 90px auto;
    text-align: right;
}

.about-leadership-intro p {
    margin: 0;
    text-align: right;
}

.about-leadership-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.about-leader {
    display: grid;
    grid-template-columns: minmax(0, 700px) 233px;
    gap: 48px;
    justify-content: end;
    align-items: start;
}

.about-leader-content {
    max-width: 700px;
    margin-left: 0;
    text-align: right;
}

.about-leader-name {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    margin-bottom: 4px;
}

.about-leader-role {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    color: #fff;
    margin-bottom: 22px;
}

.about-leader-bio {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.45;
    color: #fff;
}

.about-leader-bio p {
    margin: 0 0 14px;
    text-align: right;
}

.about-leader-bio p:last-child {
    margin-bottom: 0;
}

.about-leader-bio a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.about-leader-photo {
    width: 233px;
}

.about-leader-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.wave-sections {
    position: absolute;
    left: -9%;
    top: 0;
    width: clamp(440px, 48vw, 960px);
    height: 100%;
    min-height: 100%;        /* ← ajouter */
    object-fit: cover;
    object-position: left center;
    pointer-events: none;
    z-index: 3;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    :root { --px: 24px; }

    header { padding: 20px 24px; }
    .menu-btn { width: 120px; height: 50px; font-size: 16px; line-height: 24px; }

    .hero,
    .hero-inner--dv,
    .hero-inner--about {
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        max-height: calc(100vh - 60px);
        overflow: clip;
        padding: clamp(80px, 12vh, 140px) 24px 120px;
    }

    .hero-title { font-size: 48px; letter-spacing: -1.5px; }
    .hero-subtitle { font-size: 22px; }

    .scroll-indicator {
        bottom: clamp(20px, 3vh, 50px);
        left: 24px;
    }

    .nfe-header { grid-template-columns: 1fr; }
    .nfe-bullets { position: static; transform: none; width: 100%; margin-top: 24px; }

    .wwd-grid { grid-template-columns: 1fr; gap: 40px; }
    .wwd-title { font-size: 48px; }
    .wwd-subtitle { font-size: 20px; }

    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .insights-grid { grid-template-columns: 1fr; gap: 24px; }
    .ttu-grid { grid-template-columns: 1fr; gap: 40px; }
    .blog-layout { grid-template-columns: 1fr; }
    .archive-grid { grid-template-columns: 1fr; }
    .footer-row1 { flex-wrap: wrap; gap: 24px; }
    .footer-row2 { flex-direction: column; gap: 32px; }

    .hero-graphic--platform { width: 48vw; opacity: 0.45; }
    .platform-copy { max-width: 100%; margin-left: 0; text-align: left; }
    .platform-intro-block { margin: 0 auto 44px; }
    .platform-title--secondary { max-width: 100%; margin-bottom: 24px; }
    .platform-eyebrow { font-size: 16px; margin-bottom: 20px; }
    .platform-features-wave { width: 38vw; opacity: 0.55; }
    .platform-feature-title { font-size: 28px; }
    .platform-feature-subtitle,
    .platform-feature-text p,
    .platform-feature-example-text {
        font-size: 20px;
        line-height: 1.45;
    }

    .platform-feature-example-label {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.12em;
    }

    .dv-why-grid { grid-template-columns: 1fr; gap: 32px; }
    .dv-intro-copy { margin-left: 0; text-align: left; }
    .dv-enables-wave { width: 34vw; opacity: 0.8; }

    .dv-ai-copy p,
    .dv-enables-intro,
    .dv-enables-content p {
        font-size: 20px;
        line-height: 1.45;
    }

    .dv-ai-copy h3,
    .dv-enables-content h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .dv-ai-copy strong {
        font-size: 28px;
        line-height: 1.2;
    }

    .container-insights {
        width: calc(100% - 42px);
    }

    .insights-cta {
        justify-content: center;
        padding-right: 0;
    }

    .hero-graphic--about {
        width: 48vw;
        opacity: 0.4;
    }

    .hero-subtitle--about {
        font-size: 18px;
        max-width: 100%;
    }

    .about-trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-what-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-how-title {
        margin-bottom: 24px;
    }

    .about-how-copy p {
        font-size: 20px;
        line-height: 1.45;
    }

    .about-leader {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-leader-content {
        max-width: 100%;
        margin-left: 0;
        order: 2;
        text-align: left;
    }

    .about-leader-bio p {
        text-align: left;
    }

    .about-leader-photo {
        max-width: 240px;
        width: 100%;
        margin: 0 auto;
        order: 1;
    }

    .about-leadership-wave {
        width: 38vw;
        opacity: 0.45;
    }
	
.wave-sections {
    width: 75vw;
    left: -50%;
}

.nav-links li a {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #FFF;
  text-decoration: none;
  padding: 10px 0;
  line-height: 24px;
  transition: padding-left 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
  opacity: 0.9;
}

.hero-bottom {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.nfe-bullets	{
padding-bottom:80px;
	}

}

@media (max-width: 600px) {
    .hero,
    .hero-inner--dv,
    .hero-inner--about {
        padding: clamp(70px, 10vh, 120px) 24px 100px;
    }

    .hero-title { font-size: 34px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .wwd-title { font-size: 36px; }
    .archive-grid { grid-template-columns: 1fr; }

    .hero-graphic--platform { width: 56vw; opacity: 0.3; }
    .platform-features-wave { display: none; }
    .dv-enables-wave { display: none; }

    .hero-graphic--about {
        width: 56vw;
        opacity: 0.25;
    }

    .about-trusted-logos {
        grid-template-columns: 1fr;
    }
	
.wave-sections {
    width: 100vw;
    left: -50%;
}

.wave-wrap img
{
    display: none;
}
.why-title {
  text-align: left;
}
.why-text {
  text-align: left;
}
.benefits-title {
	font-size: 42px;
  text-align: left;
}
.benefits-list {
  text-align: left;
}
.benefit-item {
  text-align: left;
}
.benefit-text {
  text-align: left;
}

.ob-title {
	font-size: 42px;
  text-align: left;
}
.ob-list {
  text-align: left;
}
.ob-item {
  text-align: left;
}
.ob-item-title {
  text-align: left;
}
.ob-item-text {
  text-align: left;
}
.platform-features-title{
	font-size: 42px;
  text-align: left;
}
.platform-ai-title {
	font-size: 42px;
  text-align: left;
}
.ttu-title {
	font-size: 42px;
  text-align: left;
}
.insights-heading {
	font-size: 42px;
  text-align: left;
}
.about-trusted-logo {
	padding-top:20px;
}
.about-trusted-copy{
  text-align: left;
	margin:0;
	padding-left:0;
}
.about-leadership-title{
	font-size: 42px;
  text-align: left;
}
.about-leadership-intro{
  text-align: left;
}

.about-leadership-intro p{
  text-align: left;
}
.nfe-bullets	{
			padding-bottom:80px;

	}
	
}

/* Désactive le reveal pour les sections entre bandes binaires */
.section-wwd.reveal,
.section-platform-ai.reveal,
.section-dv-ai.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.close-btn {
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.close-btn:hover,
.close-btn:focus,
.close-btn:active {
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.content-page-wrap {
    padding: 0 var(--px);
    max-width: 100%;
    box-sizing: border-box;
}

.blog-main--full {
    padding-top: 60px;
    padding-bottom: 80px;
}


/* ════════════════════════════════════════════════════════════
   CONTACT HERO — fond blanc
   ════════════════════════════════════════════════════════════ */
.section-contact-hero {
    background: #ffffff;
    padding: 100px 80px 80px;
}
.contact-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.contact-hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #021E3C;
    margin-bottom: 18px;
    line-height: 1.1;
    font-family: "Sora", sans-serif;
}
.contact-hero-subtitle {
    font-size: 1.05rem;
    color: #000;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 64px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 300;
}
.contact-coords-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 48px;
}
.contact-coord-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-coord-label {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #38E557;
    font-weight: 600;
}
.contact-coord-value,
.contact-coord-value a {
    font-size: .95rem;
    color: #000;
    text-decoration: none;
    line-height: 1.6;
}
.contact-coord-value a:hover { color: #38E557; }
.contact-socials { display: flex; gap: 10px; margin-top: 4px; }
.contact-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid #d0dce8;
    border-radius: 8px;
    color: #021E3C;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.contact-social:hover {
    border-color: #38E557;
    color: #38E557;
    background: rgba(56,229,87,.06);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
    .section-contact-hero { padding: 64px 32px 72px; }
    .contact-coords-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .section-contact-hero  { padding: 48px 20px 56px; }
    .contact-coords-grid   { grid-template-columns: 1fr; gap: 28px; }
    .contact-hero-title    { font-size: 2rem; }
}