:root {
    --impact-navy: #0d233f;
    --impact-dark-navy: #081a30;
    --impact-cyan: #18a8d8;
    --impact-light-cyan: #4cc4ea;
    --impact-yellow: #f4b400;
    --impact-yellow-hover: #ffc61a;
    --impact-green: #47791f;
    --impact-cream: #faf7f1;
    --impact-ink: #17222f;
    --impact-text: #3c4a5a;
    --impact-muted: #6a7686;
    --impact-line: #e6e1d6;
}

@keyframes imFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes imFloatSlow {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-22px) rotate(6deg); }
}

@keyframes imPulse {
    0%, 100% { transform: scale(1); opacity: .5; }
    50% { transform: scale(1.15); opacity: .8; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--impact-cream);
    color: var(--impact-ink);
    font-family: "Mulish", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body #wrapwrap { padding-top: 74px; }

/* Odoo Website Builder must always expose the complete visual state while
   content is being edited, independently from reveal observers. */
body.editor_enable .im-reveal,
body.o_is_editable .im-reveal,
.o_editable .im-reveal {
    opacity: 1 !important;
    transform: none !important;
}

body.editor_enable .im-mobile-menu:not(.open),
body.o_is_editable .im-mobile-menu:not(.open),
.o_editable .im-mobile-menu:not(.open) {
    z-index: -1 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-14px) !important;
}

h1, h2, h3, h4, h5, h6,
.im-brand, .im-btn, .im-main-header a {
    font-family: "Poppins", system-ui, sans-serif;
}

a { color: var(--impact-green); text-decoration: none; }
.im-site a,
.im-site a:hover,
.im-site a:focus,
.im-site a *,
.im-contact-items *,
.im-testimonial-section * {
    text-decoration: none !important;
    text-decoration-color: transparent !important;
}
a:hover { color: var(--impact-cyan); }
::selection { background: var(--impact-yellow); color: var(--impact-navy); }

.im-container {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

/* Header */
.im-main-header {
    position: fixed;
    z-index: 1050;
    top: 0;
    right: 0;
    left: 0;
    height: 74px;
    color: #fff;
}

.im-navbar {
    height: 74px;
    background: rgba(13, 35, 63, .92);
    box-shadow: 0 2px 24px rgba(8, 26, 48, .28);
    backdrop-filter: blur(10px);
}

.im-nav-container {
    display: flex;
    width: min(1220px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.im-brand {
    display: inline-flex;
    align-items: baseline;
    flex: 0 0 auto;
    gap: 5px;
    color: #fff !important;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1;
}

.im-brand strong { color: var(--impact-light-cyan); }

.im-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.im-desktop-nav a {
    position: relative;
    padding: 27px 10px 25px;
    color: rgba(255, 255, 255, .86);
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
}

.im-desktop-nav a::after {
    position: absolute;
    right: 10px;
    bottom: 17px;
    left: 10px;
    height: 2px;
    background: var(--impact-yellow);
    content: "";
    opacity: 0;
    transform: scaleX(.3);
    transition: opacity .25s ease, transform .25s ease;
}

.im-desktop-nav a:hover,
.im-desktop-nav a.active { color: var(--impact-yellow); }
.im-desktop-nav a:hover::after,
.im-desktop-nav a.active::after { opacity: 0; transform: scaleX(.3); }

.im-nav-actions { display: flex; align-items: center; gap: 14px; }

.im-header-cta,
.im-btn-primary {
    border: 0;
    border-radius: 999px;
    background: var(--impact-yellow);
    box-shadow: 0 10px 28px rgba(244, 180, 0, .32);
    color: var(--impact-navy) !important;
    font-weight: 800;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.im-header-cta { padding: 11px 20px; font-size: 14px; white-space: nowrap; }
.im-header-cta:hover,
.im-btn-primary:hover { background: var(--impact-yellow-hover); transform: translateY(-2px); }

.im-burger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
}

.im-burger span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}

.im-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.im-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.im-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.im-mobile-menu {
    position: fixed;
    z-index: -1;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 30px 24px;
    background: rgba(13, 35, 63, .99);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s ease;
}

.im-mobile-menu.open { z-index: 1049; opacity: 1; pointer-events: auto; transform: none; }
.im-mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    font-weight: 600;
}
.im-mobile-menu .im-mobile-cta {
    margin-top: 18px;
    padding: 15px 20px;
    border: 0;
    border-radius: 999px;
    background: var(--impact-yellow);
    color: var(--impact-navy);
    text-align: center;
}

/* Shared */
.im-site { overflow: hidden; background: var(--impact-cream); }
.im-section { position: relative; padding: 96px 0; }
.im-card-grid, .im-team-grid, .im-step-grid, .im-stats-grid, .im-lms-stats { display: grid; gap: 24px; }
.im-trio { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.im-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.im-section-head.im-center {
    align-items: center;
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.im-section-head h2,
.im-section-title {
    margin: 0;
    color: var(--impact-navy);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.05;
}

.im-kicker {
    display: block;
    margin-bottom: 13px;
    color: var(--impact-cyan);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.im-kicker-light { color: var(--impact-light-cyan); }
.im-link-strong {
    padding-bottom: 2px;
    border-bottom: 0;
    color: var(--impact-navy);
    font-weight: 800;
}
.im-link-light { color: var(--impact-yellow); }

.im-btn {
    display: inline-flex;
    min-height: 54px;
    padding: 14px 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
}

.im-btn-secondary {
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}
.im-btn-secondary:hover { background: rgba(255, 255, 255, .2); color: #fff; }
.im-btn-cyan { background: var(--impact-cyan); box-shadow: 0 12px 28px rgba(24, 168, 216, .3); color: #fff; }
.im-btn-cyan:hover { background: var(--impact-green); color: #fff; transform: translateY(-2px); }
.im-actions { display: flex; margin-top: 36px; flex-wrap: wrap; gap: 14px; }

.im-orb { position: absolute; display: block; border-radius: 50%; pointer-events: none; }
.im-orb-yellow { background: var(--impact-yellow); }
.im-orb-cyan { background: var(--impact-cyan); }

.im-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease var(--delay, 0ms), transform .7s ease var(--delay, 0ms);
}
.im-reveal.im-visible { opacity: 1; transform: none; }

/* Hero */
.im-hero {
    position: relative;
    display: flex;
    min-height: 88vh;
    align-items: center;
    overflow: hidden;
    background: var(--impact-navy);
}

.im-hero-bg {
    position: absolute;
    inset: 0;
    background: url("/website_impact_makers/static/src/img/banner-hero.png") right center / cover no-repeat;
}

.im-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(8, 26, 48, .96) 0%, rgba(8, 26, 48, .82) 38%, rgba(8, 26, 48, .15) 68%, rgba(8, 26, 48, 0) 100%);
}

.im-hero-shell { position: relative; z-index: 2; }
.im-hero-copy { max-width: 640px; }
.im-hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(24, 168, 216, .4);
    border-radius: 999px;
    margin-bottom: 26px;
    background: rgba(24, 168, 216, .18);
    color: #9adcf2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.im-hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--impact-light-cyan); }
.im-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: .98;
}
.im-hero h1 em { color: var(--impact-light-cyan); font-style: normal; }
.im-hero p {
    max-width: 520px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 20px;
    line-height: 1.55;
}
.im-orb-hero-yellow { right: -60px; bottom: -60px; width: 200px; height: 200px; opacity: .9; animation: imFloatSlow 9s ease-in-out infinite; }
.im-orb-hero-cyan { right: 120px; bottom: -40px; width: 120px; height: 120px; animation: imFloat 7s ease-in-out infinite; }

/* Stats and pillars */
.im-stats-band { padding: 56px 0; background: var(--impact-navy); color: #fff; }
.im-stats-grid { grid-template-columns: repeat(4, 1fr); }
.im-stats-grid > div { text-align: center; }
.im-stats-grid strong {
    display: block;
    color: var(--impact-yellow);
    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    line-height: 1;
}
.im-stats-grid span { display: block; margin-top: 8px; color: rgba(255, 255, 255, .75); font-weight: 600; }
.im-pillars-section { background: var(--impact-cream); }
.im-pillar {
    padding: 38px 32px;
    border-top: 5px solid var(--accent);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(13, 35, 63, .06);
}
.im-pillar > span, .im-topic > span {
    display: inline-flex;
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--soft);
    font-size: 28px;
}
.im-pillar h3, .im-topic h3 { margin: 0 0 12px; color: var(--impact-navy); font-size: 22px; font-weight: 700; }
.im-pillar p, .im-topic p { margin: 0; color: #57657a; font-size: 15.5px; line-height: 1.6; }

/* Services */
.im-services-section { overflow: hidden; background: var(--impact-navy); color: #fff; }
.im-services-section h2 { color: #fff; }
.im-orb-services { top: -50px; right: -40px; width: 220px; height: 220px; opacity: .12; }
.im-services-grid { gap: 22px; }
.im-svc {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(13, 35, 63, .1);
}
.im-svc-bg {
    position: absolute;
    inset: 0;
    transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.im-svc-ico {
    position: absolute;
    right: -18px;
    bottom: -14px;
    font-size: 150px;
    line-height: 1;
    opacity: .16;
    transition: opacity .5s ease, transform .7s ease;
}
.im-svc-cue {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 26px;
    color: rgba(255, 255, 255, .85);
    font-size: 22px;
    letter-spacing: 2px;
    line-height: .6;
}
.im-svc-title {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 26px;
    left: 26px;
    transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}
.im-svc h3 {
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.im-svc-panel {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    padding: 30px 28px;
    background: linear-gradient(180deg, rgba(13,35,63,0) 0%, rgba(13,35,63,.55) 45%, rgba(13,35,63,.94) 100%);
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .45s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.im-svc-panel h3 { margin-bottom: 12px; text-shadow: none; }
.im-svc-panel p { margin: 0 0 16px; color: rgba(255,255,255,.9); font-size: 14.5px; line-height: 1.55; }
.im-tag-list { display: flex; flex-wrap: wrap; gap: 7px; }
.im-tag-list span, .im-skill-list span {
    padding: 5px 11px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 999px;
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
}
.im-svc:hover .im-svc-bg { filter: brightness(.72); transform: scale(1.07); }
.im-svc:hover .im-svc-ico { opacity: .05; transform: translateY(-6px); }
.im-svc:hover .im-svc-title { opacity: 0; transform: translateY(-8px); }
.im-svc:hover .im-svc-panel { opacity: 1; transform: none; }

/* Project and blog cards */
.im-projects-preview { background: #fff; }
.im-project-card, .im-blog-card, .im-course-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--impact-cream);
    box-shadow: 0 10px 30px rgba(13, 35, 63, .05);
    color: inherit;
    transition: box-shadow .3s ease, transform .3s ease;
}
.im-project-card:hover, .im-blog-card:hover, .im-course-card:hover {
    box-shadow: 0 22px 50px rgba(13, 35, 63, .14);
    color: inherit;
    transform: translateY(-4px);
}
.im-gradient-card-head {
    position: relative;
    display: flex;
    min-height: 160px;
    padding: 18px;
    align-items: flex-end;
}
.im-gradient-card-head strong { color: #fff; font-size: 26px; font-weight: 800; text-shadow: 0 2px 10px rgba(0,0,0,.25); }
.im-pill { padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.im-pill-light { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.92); color: var(--impact-navy); }
.im-card-body { padding: 22px; }
.im-card-body h3 { margin: 0; color: var(--impact-navy); font-size: 18px; font-weight: 700; line-height: 1.35; }
.im-card-body p { color: #57657a; line-height: 1.55; }
.im-card-body .im-meta { margin: 0 0 10px; color: var(--impact-cyan); font-size: 13px; font-weight: 700; }
.im-blog-preview { background: var(--impact-cream); }
.im-blog-card { background: #fff; }
.im-blog-strip { height: 120px; }

/* Testimonials */
.im-testimonial-section { position: relative; overflow: hidden; padding: 96px 0; background: var(--impact-navy); }
.im-testimonial-shell { position: relative; max-width: 900px; text-align: center; }
.im-testimonial-viewport { overflow: hidden; }
.im-testimonial-track { display: flex; transition: transform .5s ease; }
.im-testimonial-track blockquote { min-width: 100%; margin: 0; padding: 0 12px; border: 0 !important; }
.im-testimonial-track blockquote::before,
.im-testimonial-track blockquote::after { display: none !important; content: none !important; }
.im-testimonial-track p { margin: 0 0 28px; color: #fff; font-family: "Poppins", sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 600; line-height: 1.4; }
.im-testimonial-track cite { display: flex; flex-direction: column; font-style: normal; }
.im-testimonial-track cite strong { color: var(--impact-yellow); font-size: 17px; }
.im-testimonial-track cite span { color: rgba(255,255,255,.6); font-size: 14px; }
.im-testimonial-controls { display: flex; margin-top: 40px; justify-content: center; gap: 14px; }
.im-testimonial-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 20px;
}
.im-testimonial-controls button:hover { background: rgba(255,255,255,.12); }
.im-orb-testimonial-cyan { top: -40px; right: -40px; width: 180px; height: 180px; opacity: .14; }
.im-orb-testimonial-yellow { right: -30px; bottom: -60px; width: 220px; height: 220px; opacity: .12; }

/* CTA */
.im-cta { position: relative; overflow: hidden; padding: 90px 0; background: var(--impact-cream); text-align: center; }
.im-cta .im-orb { top: -58px; right: -34px; width: 190px; height: 190px; opacity: .35; }
.im-cta .im-container { position: relative; overflow: hidden; padding: 60px 48px; border-radius: 32px; background: linear-gradient(120deg,#18A8D8,#0f7ba0); }
.im-cta h2 { margin: 0 0 16px; color: #fff; font-size: clamp(30px,4vw,44px); font-weight: 800; letter-spacing: -1px; }
.im-cta p { margin: 0 0 28px; color: rgba(255,255,255,.9); font-size: 18px; }

/* Interior heroes */
.im-about-hero, .im-centered-hero, .im-lms-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: var(--impact-navy);
    color: #fff;
    text-align: center;
}
.im-about-hero .im-container, .im-centered-hero .im-container { position: relative; max-width: 900px; }
.im-about-hero h1, .im-centered-hero h1, .im-lms-hero h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(38px,5vw,64px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
}
.im-about-hero h1 em { color: var(--impact-light-cyan); font-style: normal; }
.im-about-hero p, .im-centered-hero p, .im-lms-hero p {
    margin: 0 auto;
    color: rgba(255,255,255,.82);
    font-size: 19px;
    line-height: 1.65;
}
.im-orb-about { right: -40px; bottom: -70px; width: 240px; height: 240px; opacity: .14; }
.im-orb-services-left { bottom: -70px; left: -40px; width: 240px; height: 240px; opacity: .14; }
.im-orb-services-right { top: -40px; right: -30px; width: 180px; height: 180px; opacity: .16; animation: imPulse 7s ease-in-out infinite; }
.im-orb-formations { top: -40px; left: -30px; width: 200px; height: 200px; opacity: .16; animation: imPulse 7s ease-in-out infinite; }

/* History and team */
.im-history-section { background: #fff; }
.im-history-container { max-width: 900px; }
.im-history-container > h2, .im-process-card > h2, .im-section-title { margin-bottom: 56px; text-align: center; }
.im-timeline { padding-left: 36px; border-left: 3px solid var(--impact-line); }
.im-timeline article { position: relative; padding-bottom: 40px; }
.im-timeline article::before {
    position: absolute;
    top: 2px;
    left: -47px;
    width: 20px;
    height: 20px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--impact-yellow);
    box-shadow: 0 0 0 3px var(--impact-yellow);
    content: "";
}
.im-timeline strong { color: var(--impact-cyan); font-family: "Poppins", sans-serif; font-size: 22px; font-weight: 800; }
.im-timeline h3 { margin: 6px 0 8px; color: var(--impact-navy); font-size: 19px; font-weight: 700; }
.im-timeline p { margin: 0; color: #57657a; line-height: 1.6; }
.im-team-section { background: var(--impact-cream); }
.im-team-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
.im-team-grid-single { max-width: 270px; grid-template-columns: 1fr; }
.im-mem, .im-team-join {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13,35,63,.08);
}
.im-mem { cursor: pointer; background: #eef4fa; }
.im-mem-photo-slot {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--member-color);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 74px;
    font-weight: 800;
    transition: filter .5s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.im-mem-photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.im-mem-photo-slot .im-mem-initial {
    position: absolute;
    z-index: 1;
    display: none;
    width: 92px;
    height: 92px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(13,35,63,.2);
}
.im-mem-base {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(13,35,63,0), rgba(13,35,63,.82));
    transition: opacity .35s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.im-mem-base h3, .im-mem-panel h3 { margin: 0 0 4px; color: #fff; font-size: 19px; font-weight: 700; }
.im-mem-base p { margin: 0; color: rgba(255,255,255,.85); font-size: 12.5px; line-height: 1.35; }
.im-mem-panel {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    padding: 26px 22px;
    background: linear-gradient(180deg, rgba(13,35,63,.35), rgba(13,35,63,.95) 70%);
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity .4s ease;
}
.im-mem-panel h3 { font-size: 20px; font-weight: 800; }
.im-mem-panel p { margin: 0 0 14px; color: rgba(255,255,255,.9); font-size: 13px; line-height: 1.5; }
.im-mem-panel .im-mem-role { margin-bottom: 12px; color: var(--impact-light-cyan); font-size: 12px; font-weight: 700; }
.im-skill-list { display: flex; margin-bottom: 16px; flex-wrap: wrap; gap: 6px; }
.im-skill-list span { padding: 4px 9px; font-size: 10.5px; }
.im-mem-panel > a { align-self: flex-start; padding: 8px 14px; border-radius: 999px; background: var(--impact-yellow); color: var(--impact-navy); font-size: 12.5px; font-weight: 800; }
.im-mem:hover .im-mem-photo-slot { filter: brightness(.75); transform: scale(1.06); }
.im-mem:hover .im-mem-base { opacity: 0; transform: translateY(10px); }
.im-mem:hover .im-mem-panel { opacity: 1; }
.im-team-join { display: flex; padding: 28px 20px; align-items: center; justify-content: center; background: var(--impact-navy); flex-direction: column; text-align: center; }
.im-team-join > span { margin-bottom: 10px; font-size: 32px; }
.im-team-join h3 { margin: 0 0 12px; color: #fff; font-size: 17px; }
.im-team-join a { color: var(--impact-yellow); font-weight: 700; }

/* Services page, formations, contact */
.im-process-section { padding-top: 90px; background: var(--impact-cream); }
.im-process-card { padding: 56px 48px; border-radius: 28px; background: #fff; box-shadow: 0 16px 44px rgba(13,35,63,.06); }
.im-step-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
.im-step-grid strong { font-family: "Poppins", sans-serif; font-size: 40px; font-weight: 800; line-height: 1; }
.im-step-grid h3 { margin: 14px 0 8px; color: var(--impact-navy); font-size: 18px; font-weight: 700; }
.im-step-grid p { margin: 0; color: #57657a; font-size: 14.5px; line-height: 1.55; }
.im-service-cta { padding: 0 0 90px; background: var(--impact-cream); }
.im-service-cta .im-container { position: relative; overflow: hidden; padding: 60px 48px; border-radius: 32px; background: linear-gradient(120deg,#18A8D8,#0f7ba0); text-align: center; }
.im-service-cta .im-orb { top: -50px; right: -30px; width: 180px; height: 180px; opacity: .35; }
.im-service-cta h2 { position: relative; margin: 0 0 16px; color: #fff; font-size: clamp(28px,4vw,42px); font-weight: 800; }
.im-service-cta p { position: relative; margin: 0 0 30px; color: rgba(255,255,255,.9); font-size: 18px; }
.im-service-cta .im-btn { position: relative; }
.im-topic { padding: 32px 28px; border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(13,35,63,.05); }
.im-topic > span { width: 54px; height: 54px; margin-bottom: 20px; border-radius: 14px; background: var(--soft); font-size: 26px; }
.im-topic h3 { font-size: 19px; }
.im-top-space { margin-top: 56px; }
.im-center { text-align: center; }
.im-contact-page { padding-top: 0; }
.im-contact-page > .im-section { padding: 80px 0 96px; }
.im-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.im-contact-copy h1 { margin: 0 0 20px; color: var(--impact-navy); font-size: clamp(36px,4.5vw,54px); font-weight: 800; letter-spacing: -1.5px; }
.im-contact-copy h1 em { color: var(--impact-cyan); font-style: normal; }
.im-contact-copy > p { margin: 0 0 36px; color: #57657a; font-size: 18px; line-height: 1.65; }
.im-contact-items { display: flex; flex-direction: column; gap: 22px; }
.im-contact-items > div { display: flex; align-items: flex-start; gap: 16px; }
.im-contact-items > div > span { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; background: var(--soft); font-size: 22px; }
.im-contact-items p { display: flex; margin: 0; color: #57657a; flex-direction: column; }
.im-contact-items strong { color: var(--impact-navy); }
.im-contact-form { display: block; padding: 40px; border-radius: 24px; background: #fff; box-shadow: 0 16px 44px rgba(13,35,63,.08); }
.im-contact-form form { margin: 0; }
.im-contact-form .s_website_form_rows { margin: 0; }
.im-contact-form .s_website_form_field { padding: 0; margin-bottom: 18px !important; }
.im-contact-form .s_website_form_label { display: block; width: auto !important; margin: 0 0 7px; color: var(--impact-navy); font-size: 14px; font-weight: 700; }
.im-contact-form .s_website_form_mark { color: var(--impact-cyan); }
.im-contact-form input, .im-contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #d9dfe6;
    border-radius: 12px;
    outline: none;
    background: var(--impact-cream);
    color: var(--impact-ink);
    font-family: inherit;
    font-size: 15px;
}
.im-contact-form input:focus, .im-contact-form textarea:focus { border-color: var(--impact-cyan); box-shadow: 0 0 0 3px rgba(24,168,216,.12); }
.im-contact-form .s_website_form_submit { padding: 0 !important; margin: 6px 0 0 !important; text-align: left !important; }
.im-contact-form .s_website_form_submit .s_website_form_label { display: none; }
.im-contact-form .s_website_form_send,
.im-contact-form button { display: block; width: 100%; padding: 15px; border: 0; border-radius: 12px; background: var(--impact-yellow); color: var(--impact-navy); font-family: "Poppins", sans-serif; font-size: 16px; font-weight: 700; text-align: center; }
.im-contact-form .s_website_form_send:hover,
.im-contact-form button:hover { background: var(--impact-yellow-hover); color: var(--impact-navy); }
.im-contact-form #s_website_form_result { display: block; margin-top: 12px; }

/* LMS */
.im-lms-tabs { position: sticky; z-index: 20; top: 74px; background: var(--impact-dark-navy); }
.im-lms-tabs .im-container { display: flex; gap: 34px; }
.im-lms-tabs a { position: relative; padding: 17px 0; color: rgba(255,255,255,.8); font-weight: 700; }
.im-lms-tabs a:hover, .im-lms-tabs a.active { color: var(--impact-yellow); }
.im-lms-tabs a.active::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--impact-yellow); content: ""; }
.im-lms-hero { text-align: left; }
.im-lms-hero-grid { display: grid; grid-template-columns: 1fr 360px; align-items: center; gap: 48px; }
.im-lms-hero h1 { margin-bottom: 10px; }
.im-lms-hero p { margin: 0; }
.im-activity-card { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.07); }
.im-activity-card > div { display: flex; margin: 16px 0 10px; justify-content: space-between; gap: 6px; }
.im-activity-card span { display: flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 10px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.55); font-size: 13px; font-weight: 800; }
.im-activity-card span.on { background: var(--impact-yellow); color: var(--impact-navy); }
.im-activity-card p { color: rgba(255,255,255,.65); font-size: 13px; }
.im-lms-stats { grid-template-columns: repeat(4, 1fr); margin-bottom: 58px; }
.im-lms-stats article { padding: 28px; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(13,35,63,.05); }
.im-lms-stats strong { display: block; color: var(--impact-cyan); font-family: "Poppins",sans-serif; font-size: 36px; font-weight: 800; }
.im-lms-stats span { color: var(--impact-muted); font-weight: 700; }
.im-lms h2 { color: var(--impact-navy); font-size: 24px; font-weight: 800; }
.im-continue-card { display: grid; overflow: hidden; margin: 20px 0 58px; grid-template-columns: 300px 1fr; border-radius: 22px; background: #fff; box-shadow: 0 16px 44px rgba(13,35,63,.1); color: inherit; }
.im-continue-card > div:first-child { display: flex; min-height: 260px; align-items: center; justify-content: center; color: #fff; font-size: 48px; }
.im-continue-card > div:last-child { padding: 34px; }
.im-continue-card h3 { margin: 0 0 8px; color: var(--impact-navy); font-size: 22px; font-weight: 800; }
.im-continue-card p { color: var(--impact-muted); }
.im-progress { overflow: hidden; height: 7px; border-radius: 999px; background: #e7ebef; }
.im-progress span { display: block; height: 100%; border-radius: inherit; background: var(--impact-cyan); }
.im-continue-card > div:last-child > strong { display: inline-block; margin-top: 18px; color: var(--impact-navy); }
.im-lms-course-head { margin-top: 0; }
.im-course-card { background: #fff; }
.im-track-list { display: flex; margin: 22px 0 48px; flex-direction: column; gap: 12px; }
.im-track-row { display: grid; padding: 20px 22px; align-items: center; grid-template-columns: 1fr 1.2fr 56px; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(13,35,63,.05); color: var(--impact-navy); gap: 24px; }
.im-tracking-panels { display: grid; margin-bottom: 26px; grid-template-columns: 1fr 1fr; gap: 26px; }
.im-tracking-panels article, .im-badges-panel { padding: 30px; border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(13,35,63,.05); }
.im-tracking-panels strong { color: var(--impact-cyan); }
.im-badges-panel > div { display: flex; flex-wrap: wrap; gap: 12px; }
.im-badges-panel span { padding: 10px 14px; border-radius: 999px; background: #eaf3e0; color: var(--impact-green); font-weight: 700; }

/* Blog native adaptation */
.website_blog #o_wblog_blog_top,
.website_blog .o_wblog_blog_top,
.website_blog .im-blog-hero { background: var(--impact-navy); }
.im-blog-hero { padding: 72px 0; color: #fff; }
.im-blog-hero h1 { margin: 0; color: #fff; font-size: clamp(38px,5vw,58px); font-weight: 800; letter-spacing: -1.5px; }
.im-blog-hero p { margin: 14px 0 0; color: rgba(255,255,255,.8); font-size: 18px; }
.im-blog-index { padding: 64px 0 96px; background: var(--impact-cream); }
.im-blog-featured { display: grid; overflow: hidden; margin-bottom: 48px; grid-template-columns: 1.1fr 1fr; border-radius: 26px; background: #fff; box-shadow: 0 16px 44px rgba(13,35,63,.08); color: inherit; }
.im-blog-featured-cover { display: flex; min-height: 280px; align-items: center; justify-content: center; color: rgba(255,255,255,.85); font-family: "Poppins",sans-serif; font-size: 20px; font-weight: 800; letter-spacing: 2px; }
.im-blog-featured-body { padding: 44px; }
.im-blog-featured-body h2 { margin: 0 0 20px; color: var(--impact-navy); font-size: clamp(24px,3vw,32px); font-weight: 800; line-height: 1.2; }
.im-read-link { padding-bottom: 2px; border-bottom: 0; color: var(--impact-navy); font-weight: 700; }
.im-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.im-blog-index-card { overflow: hidden; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(13,35,63,.05); color: inherit; transition: box-shadow .3s ease, transform .3s ease; }
.im-blog-index-card:hover { box-shadow: 0 20px 44px rgba(13,35,63,.12); color: inherit; transform: translateY(-4px); }
.im-blog-index-card-cover { height: 120px; }
.im-blog-index-card-body { padding: 24px; }
.im-blog-index-card h3 { margin: 0; color: var(--impact-navy); font-size: 17px; font-weight: 700; line-height: 1.35; }
.im-blog-date { margin-bottom: 10px; color: var(--impact-cyan); font-size: 13px; font-weight: 700; }
.im-article-cover { display: flex; height: 220px; align-items: flex-end; }
.im-article-cover .im-container { width: min(760px,calc(100% - 48px)); padding-bottom: 32px; }
.im-article-cover a { color: #fff; font-weight: 700; }
.im-article-main { width: min(760px,calc(100% - 48px)); margin: 0 auto; padding: 48px 0 96px; }
.im-article-main h1 { margin: 0 0 28px; color: var(--impact-navy); font-size: clamp(30px,4vw,44px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
.im-article-author { display: flex; margin-bottom: 36px; padding-bottom: 28px; align-items: center; border-bottom: 1px solid var(--impact-line); gap: 12px; }
.im-article-avatar { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: var(--impact-cyan); color: #fff; font-family: "Poppins",sans-serif; font-weight: 800; }
.im-article-content { color: var(--impact-text); font-size: 18px; line-height: 1.8; }

/* Native eLearning shell */
.o_wslides_wrap { background: var(--impact-cream); }
.o_wslides_wrap > .container { width: min(1120px,calc(100% - 48px)); max-width: none; padding-top: 44px; }
.o_wslides_wrap .o_wslides_course_card { overflow: hidden; border: 0; border-radius: 20px; box-shadow: 0 10px 30px rgba(13,35,63,.06); transition: box-shadow .3s ease, transform .3s ease; }
.o_wslides_wrap .o_wslides_course_card:hover { box-shadow: 0 22px 50px rgba(13,35,63,.14); transform: translateY(-4px); }
.o_wslides_wrap .o_wslides_course_card .card-title { color: var(--impact-navy); font-family: "Poppins",sans-serif; font-size: 17px; font-weight: 700; }
.o_wslides_wrap .btn-primary, .o_wslides_course_header .btn-primary { border-color: var(--impact-yellow); background: var(--impact-yellow); color: var(--impact-navy); font-weight: 700; }
.im-slides-catalog-head { margin-bottom: 32px; }
.im-slides-catalog-head h1 { margin: 0 0 12px; color: var(--impact-navy); font-size: clamp(32px,4vw,48px); font-weight: 800; }
.im-slides-catalog-head p { color: var(--impact-muted); font-size: 18px; }

/* Portfolio adaptation */
.portfolio-page { overflow: hidden; background: var(--impact-cream) !important; }
.portfolio-page .portfolio-shell { width: min(1120px,calc(100% - 48px)) !important; max-width: none !important; padding: 0 0 96px !important; }
.portfolio-page .portfolio-heading {
    position: relative;
    left: 50%;
    display: block !important;
    width: 100vw;
    margin-left: -50vw;
    padding: 72px 24px !important;
    border: 0 !important;
    background: var(--impact-navy);
    text-align: center;
}
.portfolio-page .portfolio-heading > div:first-child { max-width: 1120px; margin: 0 auto; }
.portfolio-page .portfolio-eyebrow, .portfolio-page .portfolio-count-card { display: none !important; }
.portfolio-page .portfolio-heading h1 { max-width: none !important; color: #fff !important; font-size: clamp(38px,5vw,58px) !important; font-weight: 800 !important; letter-spacing: -1.5px !important; }
.portfolio-page .portfolio-heading p { max-width: none !important; color: rgba(255,255,255,.8) !important; font-size: 19px !important; }
.portfolio-page .portfolio-board { display: flex !important; margin-top: 48px !important; flex-direction: column !important; gap: 16px !important; }
.portfolio-page .portfolio-map-panel { overflow: hidden; width: 100% !important; min-height: auto !important; border: 1px solid var(--impact-line) !important; border-radius: 20px !important; box-shadow: 0 14px 40px rgba(13,35,63,.08) !important; }
.portfolio-page #portfolio-map { height: 440px !important; min-height: 440px !important; border: 0 !important; }
.portfolio-page .map-legend { order: 2; padding: 13px 16px !important; background: var(--impact-cream); color: var(--impact-text); font-weight: 600; }
.portfolio-page .legend-dot-headquarters { background: var(--impact-yellow) !important; }
.portfolio-page .legend-dot-active { background: var(--impact-cyan) !important; }
.portfolio-page .legend-dot-completed { background: var(--impact-navy) !important; }
.portfolio-page .portfolio-filter-panel {
    display: grid !important;
    width: 100% !important;
    padding: 20px 22px !important;
    align-items: end;
    grid-template-columns: auto minmax(0,1fr);
    border: 0 !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 30px rgba(13,35,63,.05) !important;
}
.portfolio-page .portfolio-filter-head { margin: 0 18px 0 0 !important; }
.portfolio-page .portfolio-filter-head h2 { font-size: 0 !important; }
.portfolio-page .portfolio-filter-head h2::before { content: "Filtrer :"; color: var(--impact-navy); font-size: 16px; }
.portfolio-page .portfolio-reset { position: absolute; right: 22px; margin-top: 4px; color: var(--impact-cyan) !important; }
.portfolio-page .filter-stack { display: grid !important; padding-right: 115px; grid-template-columns: repeat(3,minmax(160px,1fr)); gap: 16px !important; }
.portfolio-page .filter-more { display: none !important; }
.portfolio-page .portfolio-field label { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); }
.portfolio-page .portfolio-field .form-select { height: 42px; border: 1px solid #d9dfe6 !important; border-radius: 10px !important; background-color: var(--impact-cream) !important; color: var(--impact-navy) !important; font-weight: 600; }
.portfolio-page .portfolio-results-head { margin: 14px 0 28px !important; border: 0 !important; }
.portfolio-page .portfolio-results-head h2 { display: none; }
.portfolio-page .portfolio-results-pill { padding: 0 !important; border: 0 !important; background: transparent !important; color: var(--impact-muted) !important; font-size: 14px !important; font-weight: 600 !important; }
.portfolio-page .portfolio-grid { grid-template-columns: repeat(3,minmax(0,1fr)) !important; gap: 26px !important; }
.portfolio-page .project-card { border-radius: 22px !important; box-shadow: 0 10px 30px rgba(13,35,63,.05) !important; }
.portfolio-page .project-card:hover { box-shadow: 0 22px 50px rgba(13,35,63,.14) !important; transform: translateY(-4px); }
.portfolio-page .project-card-media { height: 170px !important; }
.portfolio-page .project-image { filter: none !important; }
.portfolio-page .project-card-media .project-year, .portfolio-page .project-card-media .project-status { top: 16px; border-radius: 999px; }
.portfolio-page .project-card-media .project-year { left: 16px; background: rgba(255,255,255,.92); color: var(--impact-navy); }
.portfolio-page .project-card-media .project-status { right: 16px; }
.portfolio-page .project-card-body { padding: 22px !important; }
.portfolio-page .project-sdg { border: 0 !important; border-radius: 6px !important; background: var(--impact-green-soft) !important; color: var(--impact-green) !important; }

.project-detail-page { overflow: hidden; background: var(--impact-cream) !important; }
.project-detail-page .project-detail-shell { width: min(900px,calc(100% - 48px)); max-width: none !important; padding: 0 0 96px !important; }
.project-detail-page .project-back { position: absolute; z-index: 3; margin-top: 34px; border: 0; color: #fff; font-weight: 700; }
.project-detail-page .project-hero { position: relative; left: 50%; width: 100vw; height: 280px; margin-left: -50vw; border: 0; border-radius: 0; box-shadow: none; }
.project-detail-page .project-hero-content { width: min(1120px,calc(100% - 48px)); margin: 0 auto; padding: 0 0 36px !important; }
.project-detail-page .project-hero-badges { display: none; }
.project-detail-page .project-hero h1 { font-size: clamp(36px,5vw,56px) !important; font-weight: 800; }
.project-detail-page .project-detail-grid { display: block !important; padding-top: 56px; }
.project-detail-page .project-detail-main { width: 100%; max-width: none; }
.project-detail-page .project-info-panel { margin-top: 36px; border: 0 !important; border-radius: 24px; background: var(--impact-navy) !important; color: #fff; box-shadow: none; }
.project-detail-page .project-info-panel h2, .project-detail-page .project-info-panel strong, .project-detail-page .project-info-panel span { color: #fff !important; }
.project-detail-page .project-info-panel .project-contact { border: 0; border-radius: 999px; background: var(--impact-yellow); color: var(--impact-navy); font-weight: 700; }
.project-detail-page .project-gallery { grid-template-columns: repeat(3,1fr); gap: 16px; }
.project-detail-page .project-gallery-item { border-radius: 16px; }

/* Footer */
.im-footer { padding: 64px 0 32px; background: var(--impact-dark-navy); color: rgba(255,255,255,.72); }
.im-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.im-footer-brand { margin-bottom: 18px; font-size: 26px; }
.im-footer p { max-width: 520px; margin: 0 0 20px; color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 1.65; }
.im-socials { display: flex; gap: 12px; }
.im-socials a { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; }
.im-socials a:hover { background: var(--impact-cyan); }
.im-footer h3 { margin: 0 0 18px; color: #fff; font-size: 16px; font-weight: 700; }
.im-footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.im-footer-links a, .im-footer-links span { color: rgba(255,255,255,.72); font-size: 14.5px; }
.im-footer-links a:hover { color: var(--impact-yellow); }
.im-footer-bottom { width: min(1220px,calc(100% - 48px)); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 13px; }

/* Odoo builder and production polish */
.im-site a,
.im-site a:hover,
.im-site a:focus,
.website_blog a,
.website_blog a:hover,
.website_blog a:focus,
.o_wslides_wrap a,
.o_wslides_wrap a:hover,
.o_wslides_wrap a:focus,
.portfolio-page a,
.portfolio-page a:hover,
.portfolio-page a:focus,
.project-detail-page a,
.project-detail-page a:hover,
.project-detail-page a:focus {
    text-decoration: none !important;
}

.im-desktop-nav a::after,
.im-lms-tabs a::after,
.im-lms-tabs a.active::after,
.website_blog a::after,
.portfolio-page a::after {
    display: none !important;
}

body.editor_enable .im-reveal,
body.o_is_editable .im-reveal,
.o_editable .im-reveal {
    opacity: 1 !important;
    transform: none !important;
}

.im-builder-zone {
    min-height: 0;
}

body.editor_enable .im-builder-zone,
body.o_is_editable .im-builder-zone,
.o_editable .im-builder-zone {
    min-height: 56px;
    outline: 1px dashed rgba(24, 168, 216, .45);
    outline-offset: -8px;
}

body.editor_enable .im-mem,
body.o_is_editable .im-mem,
.o_editable .im-mem {
    overflow: visible !important;
    min-height: 620px;
    aspect-ratio: auto;
    background: var(--impact-navy);
}

body.editor_enable .im-mem-photo-slot,
body.o_is_editable .im-mem-photo-slot,
.o_editable .im-mem-photo-slot {
    position: relative !important;
    inset: auto !important;
    height: 330px;
    filter: none !important;
    transform: none !important;
}

body.editor_enable .im-mem-base,
body.o_is_editable .im-mem-base,
.o_editable .im-mem-base,
body.editor_enable .im-mem-panel,
body.o_is_editable .im-mem-panel,
.o_editable .im-mem-panel {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    transform: none !important;
    background: var(--impact-navy);
}

body.editor_enable .im-mem-base,
body.o_is_editable .im-mem-base,
.o_editable .im-mem-base {
    display: none !important;
}

body.editor_enable .im-mem-panel,
body.o_is_editable .im-mem-panel,
.o_editable .im-mem-panel {
    display: flex !important;
    padding-top: 18px;
}

body.editor_enable .im-mem:hover .im-mem-photo-slot,
body.o_is_editable .im-mem:hover .im-mem-photo-slot,
.o_editable .im-mem:hover .im-mem-photo-slot,
body.editor_enable .im-mem:hover .im-mem-base,
body.o_is_editable .im-mem:hover .im-mem-base,
.o_editable .im-mem:hover .im-mem-base {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
}

body.editor_enable .im-svc,
body.o_is_editable .im-svc,
.o_editable .im-svc {
    overflow: visible !important;
    height: auto;
    min-height: 420px;
    cursor: default;
}

body.editor_enable .im-svc-bg,
body.o_is_editable .im-svc-bg,
.o_editable .im-svc-bg {
    filter: brightness(.72) !important;
    transform: none !important;
}

body.editor_enable .im-svc-title,
body.o_is_editable .im-svc-title,
.o_editable .im-svc-title {
    display: none !important;
}

body.editor_enable .im-svc-ico,
body.o_is_editable .im-svc-ico,
.o_editable .im-svc-ico {
    opacity: .08 !important;
    transform: none !important;
}

body.editor_enable .im-svc-panel,
body.o_is_editable .im-svc-panel,
.o_editable .im-svc-panel {
    position: relative !important;
    inset: auto !important;
    min-height: 420px;
    opacity: 1 !important;
    transform: none !important;
}

.im-blog-strip,
.im-blog-featured-cover,
.im-blog-index-card-cover,
.im-article-cover {
    background-position: center !important;
    background-size: cover !important;
}

/* Native eLearning/course pages, still powered by Odoo website_slides */
#wrapwrap .o_wslides_wrap,
body:has(.o_wslides_course_header) #wrapwrap {
    background: var(--impact-cream) !important;
}

#wrapwrap .o_wslides_course_header {
    overflow: hidden;
    border: 0 !important;
    background: linear-gradient(105deg, rgba(13,35,63,.98), rgba(13,35,63,.86)) !important;
    color: #fff !important;
}

#wrapwrap .o_wslides_course_header::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 18%, rgba(244,180,0,.24) 0 9rem, transparent 9.2rem),
                radial-gradient(circle at 8% 90%, rgba(24,168,216,.2) 0 11rem, transparent 11.2rem);
    content: "";
    pointer-events: none;
}

#wrapwrap .o_wslides_course_header h1,
#wrapwrap .o_wslides_course_header h2,
#wrapwrap .o_wslides_course_header h3,
#wrapwrap .o_wslides_course_header p,
#wrapwrap .o_wslides_course_header span,
#wrapwrap .o_wslides_course_header a:not(.btn) {
    color: #fff !important;
}

#wrapwrap .o_wslides_course_header h1 {
    font-family: "Poppins", sans-serif !important;
    font-size: clamp(38px, 5vw, 64px) !important;
    font-weight: 800 !important;
    letter-spacing: -1.5px;
    line-height: 1.08 !important;
}

#wrapwrap .o_wslides_wrap .btn-primary,
#wrapwrap .o_wslides_course_header .btn-primary,
#wrapwrap .o_wslides_wrap .btn.btn-primary,
#wrapwrap .o_wslides_js_course_join_link,
#wrapwrap .o_wslides_course_sidebar .btn-primary {
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--impact-yellow) !important;
    box-shadow: 0 10px 28px rgba(244, 180, 0, .25);
    color: var(--impact-navy) !important;
    font-weight: 800 !important;
}

#wrapwrap .o_wslides_wrap .card,
#wrapwrap .o_wslides_wrap .list-group,
#wrapwrap .o_wslides_wrap .o_wslides_course_sidebar,
#wrapwrap .o_wslides_wrap .o_wslides_slides_list_slide,
#wrapwrap .o_wslides_wrap table {
    border-color: var(--impact-line) !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(13,35,63,.05);
}

#wrapwrap .o_wslides_wrap .nav-tabs,
#wrapwrap .o_wslides_wrap .o_wslides_course_nav {
    border: 0 !important;
    background: var(--impact-dark-navy) !important;
}

#wrapwrap .o_wslides_wrap .nav-tabs .nav-link,
#wrapwrap .o_wslides_wrap .o_wslides_course_nav a {
    border: 0 !important;
    color: rgba(255,255,255,.82) !important;
    font-weight: 700;
}

#wrapwrap .o_wslides_wrap .nav-tabs .nav-link.active,
#wrapwrap .o_wslides_wrap .o_wslides_course_nav a.active,
#wrapwrap .o_wslides_wrap .nav-tabs .nav-link:hover,
#wrapwrap .o_wslides_wrap .o_wslides_course_nav a:hover {
    background: transparent !important;
    color: var(--impact-yellow) !important;
    text-decoration: none !important;
}

#wrapwrap .o_wslides_wrap .text-primary,
#wrapwrap .o_wslides_wrap .fa-star,
#wrapwrap .o_wslides_wrap .o_wslides_slides_list_slide a {
    color: var(--impact-cyan) !important;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .im-reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
    .im-desktop-nav a { padding-right: 7px; padding-left: 7px; font-size: 12.5px; }
    .im-header-cta { padding-right: 15px; padding-left: 15px; }
}

@media (max-width: 980px) {
    .im-desktop-nav { display: none; }
    .im-burger { display: block; }
    .im-trio, .im-blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .im-team-grid { grid-template-columns: repeat(2, 1fr); }
    .im-step-grid, .im-lms-stats { grid-template-columns: repeat(2, 1fr); }
    .im-contact-grid, .im-lms-hero-grid, .im-footer-grid, .im-blog-featured { grid-template-columns: 1fr; }
    .im-continue-card { grid-template-columns: 240px 1fr; }
    .im-blog-featured-cover { min-height: 220px; }
    .im-hero-overlay { background: linear-gradient(90deg,rgba(8,26,48,.96),rgba(8,26,48,.72)); }
    .im-orb-hero-yellow, .im-orb-hero-cyan { opacity: .45; }
    .portfolio-page .portfolio-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
    .portfolio-page .portfolio-filter-panel { grid-template-columns: 1fr; }
    .portfolio-page .portfolio-filter-head { margin: 0 0 14px !important; }
}

@media (max-width: 700px) {
    .im-container, .im-nav-container, .im-footer-bottom { width: min(100% - 32px,1220px); }
    .im-header-cta { display: none; }
    .im-hero { min-height: auto; padding: 92px 0; }
    .im-hero h1 { font-size: 45px; }
    .im-hero p { font-size: 17px; }
    .im-section { padding: 72px 0; }
    .im-section-head { align-items: flex-start; flex-direction: column; }
    .im-trio, .im-blog-grid, .im-team-grid, .im-step-grid, .im-stats-grid, .im-lms-stats, .im-tracking-panels { grid-template-columns: 1fr; }
    .im-svc { height: 340px; }
    .im-continue-card { grid-template-columns: 1fr; }
    .im-continue-card > div:first-child { min-height: 190px; }
    .im-track-row { grid-template-columns: 1fr; }
    .im-process-card, .im-service-cta .im-container, .im-contact-form { padding: 34px 24px; }
    .im-lms-tabs .im-container { overflow-x: auto; gap: 24px; }
    .im-lms-tabs a { white-space: nowrap; }
    .portfolio-page .portfolio-shell, .project-detail-page .project-detail-shell { width: min(100% - 32px,1120px) !important; }
    .portfolio-page .portfolio-grid, .portfolio-page .filter-stack, .project-detail-page .project-gallery { grid-template-columns: 1fr !important; }
    .portfolio-page .filter-stack { padding-right: 0; }
    .portfolio-page .portfolio-reset { position: static; margin-left: auto; }
    .portfolio-page #portfolio-map { height: 340px !important; min-height: 340px !important; }
}
