/* ===========================================
   WHAT WE DO — Creative Reimagination
   =========================================== */

body,
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-subtitle,
.btn,
p,
span,
a,
div {
    font-family: 'Montserrat', sans-serif !important;
}

h1,
h2,
.section-title {
    font-weight: 500 !important;
}

h3,
h4,
h5 {
    font-weight: 700 !important;
}



.wwd-delay-1 {
    transition-delay: .1s;
}

.wwd-delay-2 {
    transition-delay: .2s;
}

.wwd-delay-3 {
    transition-delay: .25s;
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.wwd-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #7dd56f, var(--color-accent));
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    width: 0%;
    z-index: 9999;
    transition: width .15s linear;
    box-shadow: 0 0 10px rgba(79, 171, 72, .5);
}

@keyframes progressShimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

/* ---------- HERO with Animated Gradient Mesh ---------- */
.wwd-hero {
    background: var(--color-primary);
    color: #fff;
    padding: 170px 0 130px;
    text-align: left;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #011d3a 0%, #022b54 40%, #033a6e 70%, #022b54 100%);
    background-size: 400% 400%;
    animation: heroGradient 12s ease infinite;
}

@keyframes heroGradient {

    0%,
    100% {
        background-position: 0% 50%
    }

    25% {
        background-position: 100% 0%
    }

    50% {
        background-position: 100% 100%
    }

    75% {
        background-position: 0% 100%
    }
}

/* Morphing blobs */
.wwd-hero-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
    pointer-events: none;
    filter: blur(60px);
}

.wwd-hero-blob--1 {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -100px;
    background: rgba(79, 171, 72, .12);
    animation: blobMorph1 18s ease-in-out infinite;
}

.wwd-hero-blob--2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    right: -60px;
    background: rgba(125, 213, 111, .08);
    animation: blobMorph2 22s ease-in-out infinite;
}

.wwd-hero-blob--3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    background: rgba(79, 171, 72, .06);
    animation: blobMorph1 14s ease-in-out infinite 4s;
}

@keyframes blobMorph1 {

    0%,
    100% {
        border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg)
    }

    33% {
        border-radius: 70% 30% 50% 50%/30% 30% 70% 70%;
        transform: translate(20px, -30px) rotate(5deg)
    }

    66% {
        border-radius: 50% 60% 30% 70%/60% 40% 70% 40%;
        transform: translate(-15px, 20px) rotate(-3deg)
    }
}

@keyframes blobMorph2 {

    0%,
    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg)
    }

    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
        transform: translate(-25px, -20px) rotate(8deg)
    }
}

/* Floating particles */
.wwd-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.wwd-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(79, 171, 72, .4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0
    }
}

/* Hero grid lines */
.wwd-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 171, 72, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 171, 72, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
    animation: gridPulse 6s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.wwd-hero .container {
    position: relative;
    z-index: 2
}

.wwd-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
    gap: clamp(42px, 7vw, 90px);
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.wwd-hero-copy {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: clamp(18px, 2vw, 30px);
    align-items: start;
    max-width: 790px;
}

.wwd-hero-border {
    width: 54px;
    height: min(430px, 58vh);
    object-fit: contain;
    object-position: top center;
    opacity: .9;
    filter: drop-shadow(0 0 18px rgba(79, 171, 72, .18));
    transform: translateY(8px);
}

.wwd-hero-copy-inner {
    min-width: 0;
}

.wwd-hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -.02em;
    font-weight: 700;
}

/* Gradient text accent */
.wwd-hero h1 .wwd-text-gradient {
    background: linear-gradient(135deg, #4fab48, #7dd56f, #4fab48);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 4s linear infinite;
}

@keyframes textGradient {
    0% {
        background-position: 0% center
    }

    100% {
        background-position: 200% center
    }
}

.wwd-hero h4 {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 0;
}

.wwd-hero h4::before {
    display: none;
}

.wwd-hero p {
    max-width: 720px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    font-weight: 400;
}

.wwd-hero-media {
    position: relative;
    min-height: 500px;
    isolation: isolate;
}

.wwd-hero-media::before {
    content: '';
    position: absolute;
    inset: 42px -22px 38px 36px;
    border: 1px solid rgba(125, 213, 111, .38);
    transform: rotate(4deg);
    z-index: -1;
}

.wwd-hero-media::after {
    content: '';
    position: absolute;
    left: -18px;
    bottom: 44px;
    width: 78%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(125, 213, 111, .55), transparent);
    transform: rotate(-7deg);
    z-index: 2;
}

.wwd-hero-photo-card {
    position: absolute;
    inset: 24px 0 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
    transform: rotate(-2deg);
    transition: transform .7s cubic-bezier(.2, .8, .2, 1), box-shadow .7s cubic-bezier(.2, .8, .2, 1);
}

.wwd-hero-photo-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 38px 95px rgba(0, 0, 0, .4);
}

.wwd-hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 34% center;
    transform: scale(1.04);
    transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.wwd-hero-photo-card:hover img {
    transform: scale(1);
}

.wwd-hero-photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 29, 58, .05), rgba(1, 29, 58, .62));
    pointer-events: none;
}



.wwd-hero-signal {
    position: absolute;
    z-index: 3;
    min-width: 90px;
    width: max-content;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 14px 36px rgba(1, 29, 58, 0.25), 
                inset 0 1px 2px rgba(255, 255, 255, 0.8), 
                inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(1, 29, 58, 0.6);
    line-height: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: heroSignalFloat 6s ease-in-out infinite;
}

.wwd-hero-signal:hover {
    transform: scale(1.12) translateY(-4px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.22) 100%);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 48px rgba(1, 29, 58, 0.35), 
                inset 0 1px 3px rgba(255, 255, 255, 0.95), 
                inset 0 -2px 6px rgba(0, 0, 0, 0.2), 
                0 0 24px rgba(94, 197, 86, 0.4);
}

.wwd-hero-signal--one {
    top: 8%;
    left: -32px;
}

.wwd-hero-signal--two {
    top: 42%;
    right: -26px;
    animation-delay: 1.2s;
}

.wwd-hero-signal--three {
    left: 8%;
    bottom: -8px;
    animation-delay: 2.4s;
}

@keyframes heroSignalFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* ---------- SECTION DIVIDERS ---------- */
.wwd-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.wwd-divider--hero-pillars {
    background: var(--color-bg);
}

.wwd-divider--stepper-audience {
    background: var(--color-primary);
}

.wwd-divider--wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---------- INTERACTIVE PILLAR LAB ---------- */
.wwd-pillars,
.wwd-related-services {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.wwd-pillars {
    padding: 100px 0 90px;
}

.wwd-pillars::before,
.wwd-related-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(2, 43, 84, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 43, 84, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
    z-index: 0;
}

.wwd-pillars .container,
.wwd-related-services .container {
    position: relative;
    z-index: 1;
}

.wwd-related-services .section-subtitle {
    max-width: 720px;
}

.wwd-pillars .section-header {
    margin-bottom: 20px
}

.wwd-pillar-tag {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .8rem;
    margin-bottom: 10px;
    background: var(--color-accent-soft);
    padding: 4px 14px;
    border-radius: 20px;
}

.wwd-pillar-lab {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: stretch;
    margin-top: 62px;
}

/* Removed vertical line */
.wwd-pillar-orbit {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 18px 0;
}

.wwd-pillar-node {
    width: 100%;
    min-height: 116px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(2, 43, 84, .1);
    border-radius: 24px;
    color: var(--color-primary);
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
    transform: rotate(0deg);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), border-color .3s ease, box-shadow .3s ease, background .3s ease;
    box-shadow: 0 12px 32px rgba(2, 43, 84, .06);
}

.wwd-pillar-node--systems {
    --angle: -18deg;
}

.wwd-pillar-node--launchpad {
    --angle: 9deg;
}

.wwd-pillar-node--ecosystems {
    --angle: -7deg;
}

.wwd-pillar-node--insights {
    --angle: 15deg;
}

.wwd-pillar-node::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(79, 171, 72, .09), transparent);
    transform: translateX(-120%);
    transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

.wwd-pillar-node:hover,
.wwd-pillar-node:focus-visible {
    transform: translateX(14px) rotate(var(--angle));
    border-color: rgba(79, 171, 72, .38);
    background: #fff;
    box-shadow: 0 22px 48px rgba(2, 43, 84, .12);
    outline: none;
}

.wwd-pillar-node.active {
    transform: rotate(0deg);
    border-color: rgba(79, 171, 72, .38);
    background: #fff;
    box-shadow: 0 18px 44px rgba(2, 43, 84, .1);
}

.wwd-pillar-node.active:hover,
.wwd-pillar-node.active:focus-visible {
    transform: translateX(14px) rotate(var(--angle));
    box-shadow: 0 22px 48px rgba(2, 43, 84, .12);
}

.wwd-pillar-node:hover::after,
.wwd-pillar-node:focus-visible::after,
.wwd-pillar-node.active::after {
    transform: translateX(120%);
}

.wwd-node-index {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
    color: rgba(2, 43, 84, .38);
    position: relative;
    z-index: 1;
}

.wwd-node-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--color-primary);
    position: relative;
    z-index: 1;
    transition: background .3s ease, transform .3s ease;
}

.wwd-pillar-node.active .wwd-node-icon,
.wwd-pillar-node:hover .wwd-node-icon,
.wwd-pillar-node:focus-visible .wwd-node-icon {
    background: var(--color-accent);
    transform: scale(1.08);
}

.wwd-node-icon svg {
    width: 27px;
    height: 27px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
}

.wwd-node-copy {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.wwd-node-copy strong,
.wwd-node-copy small {
    display: block;
}

.wwd-node-copy strong {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.25;
    margin-bottom: 6px;
}

.wwd-node-copy small {
    color: var(--color-text-secondary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.wwd-pillar-stage {
    min-height: 520px;
    background-image:
        linear-gradient(135deg, rgba(1, 29, 58, .98), rgba(2, 43, 84, .96));
    border-radius: 32px;
    padding: clamp(34px, 5vw, 58px);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 30px 80px rgba(2, 43, 84, .2);
}



.wwd-stage-kicker {
    color: var(--color-accent);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.wwd-pillar-stage h3 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    /* Harmonized with .section-title */
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 660px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.wwd-stage-description {
    margin-bottom: 1rem;
}

.wwd-stage-action {
    margin-top: 2rem;
}

.wwd-learn-more {
    margin: 0 auto;
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wwd-learn-more:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.wwd-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.wwd-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.wwd-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 29, 58, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.wwd-modal-content {
    position: relative;
    width: 100%;
    max-width: 920px;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    color: var(--color-primary);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    max-height: 90vh;
}

.wwd-modal.is-active .wwd-modal-content {
    transform: translateY(0);
}

.wwd-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-bg);
    border: none;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-shrink: 0;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-primary);
}

.wwd-modal-close:hover {
    background: var(--color-accent);
    color: #fff;
    transform: rotate(90deg);
}

/* Redesigned Modal Header & Cards */
.wwd-modal-header-clean {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(2, 43, 84, 0.08);
}

.wwd-modal-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.wwd-modal-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.2;
}

.wwd-modal-projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .wwd-modal-projects-list {
        grid-template-columns: 1fr;
    }
}

.wwd-programme-card {
    background: #ffffff;
    border: 1px solid rgba(2, 43, 84, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 15px rgba(2, 43, 84, 0.03);
}

.wwd-programme-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 30px rgba(2, 43, 84, 0.09);
}

.wwd-prog-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.wwd-prog-org-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(2, 43, 84, 0.06);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.wwd-programme-card:hover .wwd-prog-org-tag {
    background: rgba(79, 171, 72, 0.12);
    color: #3b8835;
}

.wwd-prog-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.wwd-prog-desc {
    font-size: 0.94rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Active Programmes section in Modal */
.wwd-modal-active-section {
    margin-bottom: 28px;
}

.wwd-modal-section-title {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wwd-modal-section-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* Active Programme Card Variant */
.wwd-programme-card--active {
    border: 1.5px solid var(--color-accent);
    background: linear-gradient(135deg, #ffffff 0%, rgba(79, 171, 72, 0.04) 100%);
    box-shadow: 0 6px 20px rgba(79, 171, 72, 0.08);
}

.wwd-prog-org-tag--active {
    background: rgba(79, 171, 72, 0.15);
    color: #2e6e29;
}

.wwd-prog-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4fab48;
    box-shadow: 0 0 0 0 rgba(79, 171, 72, 0.7);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 171, 72, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(79, 171, 72, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 171, 72, 0);
    }
}

/* Program Pills */
.wwd-prog-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.wwd-prog-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(2, 43, 84, 0.05);
    color: #2b3d52;
    border: 1px solid rgba(2, 43, 84, 0.08);
    transition: all 0.2s ease;
}

.wwd-programme-card:hover .wwd-prog-pill {
    background: rgba(79, 171, 72, 0.08);
    color: #2a6325;
    border-color: rgba(79, 171, 72, 0.2);
}

.wwd-prog-pill--active {
    background: rgba(79, 171, 72, 0.12);
    color: #255a20;
    border-color: rgba(79, 171, 72, 0.3);
}

.wwd-prog-cta-btn {
    margin-top: 16px;
    align-self: flex-start;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    background: var(--color-accent);
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wwd-prog-cta-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 43, 84, 0.2);
}

.wwd-detail-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.wwd-modal-outcomes {
    list-style: none;
    padding: 0;
}

.wwd-modal-outcomes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.wwd-modal-outcomes svg {
    stroke: var(--color-accent);
    stroke-width: 3;
    flex: 0 0 auto;
}

.wwd-modal-action {
    margin-top: 40px;
}

.wwd-pillar-stage p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 680px;
    position: relative;
    z-index: 1;
}

/* Flow removed */

/* Active state for flow indicators */
/* We'll handle this purely via CSS if possible or just keep them all styled similarly as labels */

.wwd-pillar-stage.is-switching .wwd-stage-kicker,
.wwd-pillar-stage.is-switching h3,
.wwd-pillar-stage.is-switching p,
.wwd-pillar-stage.is-switching .wwd-stage-flow {
    animation: pillarStageIn .45s cubic-bezier(.2, .8, .2, 1);
}

@keyframes pillarStageIn {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ---------- INTERACTIVE STEPPER ---------- */
.wwd-stepper-section {
    background: var(--color-surface);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Dot pattern background */
.wwd-stepper-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(2, 43, 84, .06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.wwd-stepper-tabs {
    display: flex;
    gap: 0;
    width: 100%;
    margin: 50px 0 0;
    position: relative;
}

.wwd-stepper-tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-border);
}

/* Animated progress line */
.wwd-stepper-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #7dd56f);
    transition: width .5s cubic-bezier(.2, .8, .2, 1);
    z-index: 2;
    box-shadow: 0 0 12px rgba(79, 171, 72, .4);
}

.wwd-step-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 20px 16px;
    cursor: pointer;
    text-align: center;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s ease;
    z-index: 1;
}

.wwd-step-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.wwd-step-tab.active::after {
    transform: scaleX(1);
}

.wwd-step-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-border);
    transition: all .3s ease;
    margin-bottom: 6px;
}

.wwd-step-tab.active .wwd-step-num {
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(79, 171, 72, .3);
}

/* Pulse dot on active */
.wwd-step-tab.active::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(79, 171, 72, .4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(79, 171, 72, 0);
    }
}

.wwd-step-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: color .3s ease;
}

.wwd-step-tab.active .wwd-step-label {
    color: var(--color-primary);
}

/* ---------- STEP PANELS — image + text layout ---------- */
.wwd-step-panels {
    width: 100%;
    margin: 40px 0 0;
    position: relative;
    min-height: 200px;
}

.wwd-step-panel {
    display: none;
    animation: panelIn .45s cubic-bezier(.2, .8, .2, 1) forwards;
}

.wwd-step-panel.active {
    display: block;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wwd-step-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    padding: 48px 0 8px;
}

.wwd-step-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 24px 60px rgba(2, 43, 84, 0.15);
}

.wwd-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wwd-step-panel.active .wwd-step-image img {
    animation: imgZoomIn .7s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes imgZoomIn {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.wwd-step-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(79, 171, 72, 0.35);
}

.wwd-step-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wwd-step-tag {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.wwd-step-copy h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin: 0;
}

.wwd-step-copy p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin: 0;
}

.wwd-step-checklist {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wwd-step-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-primary);
}

.wwd-step-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-accent-soft);
    border: 1.5px solid var(--color-accent);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%234fab48' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 860px) {
    .wwd-step-inner {
        grid-template-columns: 1fr;
    }

    .wwd-step-image {
        aspect-ratio: 16 / 9;
    }
}

/* ---------- WHO WE WORK WITH ---------- */
.wwd-audience {
    background: linear-gradient(160deg, #011d3a 0%, #022b54 50%, #033a6e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}


.wwd-audience::before {
    content: '';
    position: absolute;
    width: 55vw;
    height: 55vw;
    max-width: 800px;
    max-height: 800px;
    right: -18vw;
    top: -8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 171, 72, .12) 0%, transparent 70%);
    pointer-events: none;
}

.wwd-audience-header {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-bottom: 60px
}

.wwd-audience-kicker {
    color: var(--color-accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.wwd-audience-header .section-title,
.wwd-audience-header .section-subtitle {
    color: #fff
}

.wwd-audience-header .section-subtitle {
    color: rgba(255, 255, 255, .7)
}

.wwd-audience-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1000px;
}

.wwd-audience-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep */
.wwd-audience-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
    transition: none;
    pointer-events: none;
}

.wwd-audience-card:hover::after {
    animation: cardShimmer .8s ease forwards;
}

@keyframes cardShimmer {
    to {
        left: 150%
    }
}

/* Left accent bar */
.wwd-audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-accent), #7dd56f);
    border-radius: 0 4px 4px 0;
    transition: height .4s cubic-bezier(.2, .8, .2, 1);
}

.wwd-audience-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(79, 171, 72, .3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25), 0 0 40px rgba(79, 171, 72, .08);
}

.wwd-audience-card:hover::before {
    height: 100%
}

.wwd-audience-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: rgba(79, 171, 72, .15);
    border: 2px solid rgba(79, 171, 72, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.wwd-audience-card:hover .wwd-audience-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(79, 171, 72, .4);
}

.wwd-audience-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 1.8;
    transition: stroke .3s ease
}

.wwd-audience-card:hover .wwd-audience-icon svg {
    stroke: #fff
}

.wwd-audience-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px
}

.wwd-audience-card p {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    line-height: 1.7
}

.wwd-audience-cta-wrap {
    text-align: left;
    margin-top: 48px;
    position: relative;
    z-index: 1
}

.wwd-audience-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 8px;
    transition: all .3s ease;
}

.wwd-audience-cta:hover {
    color: var(--color-accent);
    gap: 16px
}

/* ---------- SERVICES with 3D Tilt ---------- */
.wwd-services {
    background-color: var(--color-bg);
    padding: 100px 0
}

.wwd-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    margin-top: 60px;
}

.wwd-service-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px 30px;
    text-align: center;
    position: relative;
    border: 1px solid var(--color-border);
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Gradient orb */
.wwd-service-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 171, 72, .12), rgba(79, 171, 72, .03));
    border-radius: 50%;
    transition: all .6s cubic-bezier(.2, .8, .2, 1);
    z-index: -1;
}

.wwd-service-card:hover {
    box-shadow: 0 25px 60px rgba(2, 43, 84, .12);
    border-color: rgba(79, 171, 72, .2);
}

.wwd-service-card:hover::after {
    transform: scale(3);
    opacity: .5
}

/* Inner light spotlight */
.wwd-service-card .wwd-card-spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(79, 171, 72, .06) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
}

.wwd-service-card:hover .wwd-card-spotlight {
    opacity: 1
}

.wwd-service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 2px solid rgba(79, 171, 72, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    z-index: 2;
}

.wwd-service-card:hover .wwd-service-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1) translateZ(20px);
    box-shadow: 0 10px 30px rgba(79, 171, 72, .3);
}

.wwd-service-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 2;
    transition: stroke .4s ease
}

.wwd-service-card:hover .wwd-service-icon svg {
    stroke: #fff
}

.wwd-service-link {
    border-radius: 50px;
    padding: .8rem 2rem;
    margin-top: 20px;
}

/* ---------- WHY US ---------- */
.wwd-why {
    padding: 120px 0;
    position: relative;
    background-image: url('../Emobility Training_Final Assets.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.wwd-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 43, 84, 0.88);
    z-index: 0;
}

.wwd-why .container {
    position: relative;
    z-index: 1;
}

.wwd-why-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 60px;
}

.wwd-why-copy {
    max-width: 860px;
    margin: 0;
}

.wwd-why-copy .section-title {
    color: #fff !important;
}

.wwd-why-copy p.section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    /* Ensures normalized size via base.css */
}

.wwd-why-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

.wwd-rounded-btn {
    border-radius: 50px;
    background: var(--color-accent);
    color: #fff;
    border: none;
}

.wwd-rounded-btn:hover {
    background: #fff;
    color: var(--color-primary);
}

.wwd-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    gap: 36px 32px;
    margin-top: 30px;
    width: 100%;
}

@media (max-width: 860px) {
    .wwd-why-grid {
        grid-template-columns: repeat(3, 140px);
        gap: 24px;
    }
}

@media (max-width: 500px) {
    .wwd-why-grid {
        grid-template-columns: repeat(2, 140px);
        gap: 20px;
    }
}

.wwd-why-circle {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.wwd-why-circle::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all .4s ease;
    pointer-events: none;
}

.wwd-why-circle:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.wwd-why-circle:hover::after {
    opacity: .8;
    animation: pillarSpin 15s linear infinite;
}

.wwd-why-circle svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
    margin-bottom: 16px;
    fill: none;
    stroke-width: 1.5;
    transition: all .3s ease;
}

.wwd-why-circle:hover svg {
    stroke: var(--color-accent);
    transform: scale(1.15);
}

.wwd-why-circle span {
    font-size: clamp(0.75rem, 1vw, 1rem);
    /* Auto scaling font size */
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

/* ---------- FOOTER ---------- */
.wwd-footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 80px 0 40px;
    text-align: left;
}

.wwd-footer-logo {
    height: 60px;
    margin: 0 0 30px;
}

.wwd-footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.2rem;
}

.wwd-footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
}

/* ---------- SCROLL REVEAL + STAGGER ---------- */
.wwd-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1),
        transform .8s cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform;
}

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

.wwd-reveal-stagger>.wwd-reveal:nth-child(1) {
    transition-delay: .05s
}

.wwd-reveal-stagger>.wwd-reveal:nth-child(2) {
    transition-delay: .15s
}

.wwd-reveal-stagger>.wwd-reveal:nth-child(3) {
    transition-delay: .25s
}

.wwd-reveal-stagger>.wwd-reveal:nth-child(4) {
    transition-delay: .35s
}

/* Slide from left/right variants */
.wwd-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
}

.wwd-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
}

.wwd-reveal-left.is-visible,
.wwd-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0)
}

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

    .wwd-reveal,
    .wwd-reveal-left,
    .wwd-reveal-right {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important
    }

    .wwd-hero {
        animation: none !important
    }

    .wwd-hero-blob,
    .wwd-hero-signal,
    .wwd-particles,
    .wwd-hero-grid {
        display: none !important
    }

    .wwd-progress {
        animation: none !important
    }

    .wwd-hero h1 .wwd-text-gradient {
        animation: none !important;
        background-position: 0% center
    }

    .wwd-hero-signal {
        animation: none !important
    }

    .wwd-why-circle:hover::after {
        animation: none !important
    }

    .wwd-audience-card:hover::after {
        animation: none !important
    }

    .wwd-step-tab.active::before {
        animation: none !important
    }

    .wwd-step-panel,
    .wwd-step-panel.active .wwd-step-image img {
        animation: none !important;
        transform: none !important
    }

    .wwd-pillar-stage.is-switching .wwd-stage-kicker,
    .wwd-pillar-stage.is-switching h3,
    .wwd-pillar-stage.is-switching p,
    .wwd-pillar-stage.is-switching .wwd-stage-flow {
        animation: none !important
    }

    .wwd-service-card,
    .wwd-service-card:hover {
        transform: none !important
    }
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:900px) {

    .wwd-hero-layout,
    .wwd-pillar-lab {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wwd-hero-media {
        min-height: 420px;
    }

    .wwd-hero-photo-card {
        inset: 0;
    }

    .wwd-pillar-orbit {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 0;
    }

    .wwd-pillar-node,
    .wwd-pillar-node:hover,
    .wwd-pillar-node:focus-visible,
    .wwd-pillar-node.active {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        min-height: 60px;
        height: 60px;
        padding: 6px;
        border-radius: 16px;
        transform: none !important;
    }

    .wwd-pillar-node .wwd-node-copy {
        display: none !important;
    }

    .wwd-pillar-node .wwd-node-icon {
        width: 44px;
        height: 44px;
        margin: 0 auto;
    }

    .wwd-pillar-stage {
        min-height: 320px;
    }

    .wwd-audience-grid {
        grid-template-columns: 1fr
    }

    .wwd-audience-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px
    }

    .wwd-stepper-tabs {
        flex-wrap: wrap
    }

    .wwd-step-tab {
        min-width: 33%
    }
}

@media(max-width:600px) {
    .wwd-hero {
        padding: 160px 0 100px
    }

    .wwd-hero-copy {
        grid-template-columns: 1fr;
    }

    .wwd-hero-border {
        width: 120px;
        height: 34px;
        object-fit: cover;
        object-position: top left;
    }

    .wwd-hero-media {
        min-height: 360px;
    }

    .wwd-hero-signal {
        display: none;
    }

    .wwd-pillar-node {
        grid-template-columns: 40px minmax(0, 1fr);
        min-height: 104px;
    }

    .wwd-node-icon {
        display: none;
    }

    .wwd-stage-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .wwd-why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .wwd-why-circle {
        width: 120px;
        height: 120px
    }
}

/* =============================================
   IDEA-TO-ACTION TIMELINE
   ============================================= */
.wwd-idea-action-section {
    background: linear-gradient(135deg, #F4F2E8, #EDF0E6);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(2, 43, 84, 0.15);
    border-bottom: 1px solid rgba(2, 43, 84, 0.15);
}

/* Ecosystem Partners Section matching Pillars background (var(--color-bg)) */
.wwa-section.wwa-values-section.www-partners-section {
    background: var(--color-bg) !important;
    background-color: var(--color-bg) !important;
}

.wwd-idea-action-section .section-header {
    margin-bottom: 3.5rem;
}

/* The vertical spine */
.wwd-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.wwd-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: var(--line-top, 175px);
    bottom: var(--line-bottom, 175px);
    width: 3px;
    background: linear-gradient(180deg, #022b54 0%, #0b508a 33%, #2d7cbe 66%, #4fab48 100%);
    transform: translateX(-50%);
    border-radius: 3px;
    opacity: 0.3;
}

/* Each row */
.wwd-timeline-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 56px;
    position: relative;
}

.wwd-timeline-row:last-child {
    margin-bottom: 0;
}

/* Marker (center dot) */
.wwd-timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--marker-color, #022b54);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    z-index: 2;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(2, 43, 84, 0.2), 0 0 0 6px rgba(2, 43, 84, 0.08);
    transition: transform 0.4s cubic-bezier(.2, .8, .2, 1), box-shadow 0.4s ease;
}

.wwd-timeline-row:hover .wwd-timeline-marker {
    transform: scale(1.15);
    box-shadow: 0 6px 28px rgba(2, 43, 84, 0.28), 0 0 0 10px rgba(2, 43, 84, 0.06);
}

/* Image panel */
.wwd-timeline-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: 0 16px 48px rgba(2, 43, 84, 0.12);
    transition: transform 0.5s cubic-bezier(.2, .8, .2, 1), box-shadow 0.5s ease;
}

.wwd-timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2, .8, .2, 1);
}

.wwd-timeline-row:hover .wwd-timeline-img {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(2, 43, 84, 0.18);
}

.wwd-timeline-row:hover .wwd-timeline-img img {
    transform: scale(1.06);
}

/* Content card */
.wwd-timeline-card {
    background: var(--card-gradient, linear-gradient(135deg, #01162e 0%, #022b54 55%, #084883 100%));
    color: #ffffff;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 350px;
    padding: 32px 24px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 20px rgba(2, 43, 84, 0.2), 0 0 0 8px var(--card-ring, rgba(2, 43, 84, 0.12));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(.2, .8, .2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.wwd-timeline-row:hover .wwd-timeline-card {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 28px rgba(2, 43, 84, 0.28), 0 0 0 14px var(--card-ring-hover, rgba(2, 43, 84, 0.08));
    border-color: rgba(255, 255, 255, 0.45);
}

.wwd-timeline-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    backdrop-filter: blur(4px);
    text-align: center;
}

.wwd-timeline-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.25;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wwd-timeline-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.wwd-timeline-card ul li {
    padding: 3px 0;
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 500;
    text-align: center;
}

.wwd-timeline-card ul li::before {
    display: none;
}

/* Left-aligned rows: image | marker | card */
.wwd-timeline-row--left .wwd-timeline-img {
    margin-right: 20px;
}

.wwd-timeline-row--left .wwd-timeline-card {
    margin-left: 20px;
    margin-right: auto;
}

/* Right-aligned rows: card | marker | image */
.wwd-timeline-row--right .wwd-timeline-img {
    margin-left: 20px;
}

.wwd-timeline-row--right .wwd-timeline-card {
    margin-left: auto;
    margin-right: 20px;
}

/* Graphic placeholder slot */
.wwd-graphic-slot-wrap {
    margin-top: 4rem;
    text-align: center;
}

.wwd-graphic-slot {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    border: 2px dashed rgba(2, 43, 84, 0.15);
    padding: 3rem 2rem;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease;
}

.wwd-graphic-slot:hover {
    border-color: rgba(2, 43, 84, 0.3);
}

.wwd-graphic-slot-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #022b54;
}

.wwd-graphic-slot-sub {
    color: #999;
    font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .wwd-hero-photo-card,
    .wwd-hero-media,
    .wwd-hero-blob,
    .wwd-hero-blobs,
    .wwd-timeline-img,
    .wwd-timeline-imgs,
    .wwd-timeline::before,
    .wwd-timeline-marker {
        display: none !important;
    }

    .wwd-timeline-row,
    .wwd-timeline-row--left,
    .wwd-timeline-row--right {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        position: relative;
    }

    .wwd-timeline-marker {
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        font-size: 0.72rem;
    }

    .wwd-timeline-img {
        width: 100%;
        margin: 0 0 16px 0 !important;
        aspect-ratio: 16/9;
    }

    .wwd-timeline-card {
        margin: 0 auto 16px auto !important;
        width: 100%;
        max-width: 310px;
        aspect-ratio: 1 / 1;
        align-self: center;
    }

    .wwd-timeline-row--right {
        flex-direction: column;
    }

    .wwd-timeline-row--right .wwd-timeline-card {
        order: 1;
    }

    .wwd-timeline-row--right .wwd-timeline-img {
        order: 2;
    }

    .wwd-graphic-slot {
        padding: 2rem 1rem !important;
        min-height: 180px !important;
    }
}


/* ---------- TIDIED INLINE STYLES (moved from HTML) ---------- */
.wwd-section-header--center {
    text-align: center;
    margin: 0 auto 4rem auto;
}

.wwd-section-header--center .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.wwd-pillar-tag--center {
    justify-content: center;
}

.wwd-testimonial-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    contain: content;
}

.wwd-testimonial-scroll-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wwd-testimonial-scroll-track::-webkit-scrollbar {
    display: none;
}

.wwd-testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    scroll-snap-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.wwd-testimonial-quote {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    opacity: 0.8;
    margin: 0 auto 1.2rem;
    display: block;
}

.wwd-testimonial-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-family: var(--font-serif);
    line-height: 1.65;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    border: 0;
    padding: 0;
}

.wwd-testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wwd-testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.wwd-testimonial-org {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 4px;
}

.wwa-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

/* Testimonials Dark Theme Overrides */
.testimonials-section.wwd-audience .section-title {
    color: #ffffff !important;
}

.testimonials-section.wwd-audience .section-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
}

.testimonials-section.wwd-audience .wwd-testimonial-quote {
    color: #57C1EE;
    opacity: 0.45;
}

.testimonials-section.wwd-audience .wwd-testimonial-text {
    color: #ffffff;
    font-size: 1.4rem;
}

.testimonials-section.wwd-audience .wwd-testimonial-name {
    color: #ffffff;
    font-weight: 700;
}

.testimonials-section.wwd-audience .wwd-testimonial-org {
    color: #57C1EE;
    font-weight: 500;
}


.wwd-final-cta {
    padding-bottom: 6rem;
}

.wwd-final-cta-content {
    text-align: center;
}

.wwd-final-cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.wwd-btn-invert {
    background: #fff;
    color: var(--color-primary);
}

.wwd-btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Hide modal by default with [hidden]; JS toggles .is-active */
.wwd-modal[hidden] {
    display: none;
}

.wwd-modal:not([hidden]) {
    display: flex;
}

/* ========== WHY WE EXIST ========== */
.wwd-why-we-exist {
    padding: 100px 0 120px;
    background-color: #f8f7f3;
    color: var(--color-primary);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(2, 43, 84, 0.15);
    border-bottom: 1px solid rgba(2, 43, 84, 0.15);
}

.wwd-why-we-exist::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(2, 43, 84, 0.04) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.wwd-why-we-exist::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 171, 72, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.wwd-why-we-exist .container {
    position: relative;
    z-index: 1;
}

.wwd-wwe-intro {
    text-align: center;
    margin-bottom: 60px;
}

.wwd-wwe-intro .section-title {
    margin-bottom: 20px;
    text-align: center;
}

.wwd-wwe-intro-copy {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.wwd-wwe-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.55;
    text-align: center;
}

.wwd-wwe-sublead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

/* Prominent Stall Card */
.wwd-wwe-stall-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 48px 44px;
    margin-bottom: 70px;
    border: 1px solid rgba(2, 43, 84, 0.08);
    box-shadow: 0 14px 40px rgba(2, 43, 84, 0.06), 0 2px 8px rgba(2, 43, 84, 0.02);
    position: relative;
    overflow: hidden;
}

.wwd-wwe-stall-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.wwd-wwe-stall-header h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.wwd-wwe-stall-header p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0;
}

.wwd-wwe-pipeline-container {
    width: 100%;
    padding: 10px 0 20px;
}

.wwd-wwe-pipeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.wwd-pipeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 145px;
    min-width: 145px;
    border-radius: 50%;
    padding: 16px;
    background: #f8f7f3;
    border: 2px solid rgba(2, 43, 84, 0.1);
    position: relative;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 18px rgba(2, 43, 84, 0.04);
}

.wwd-pipeline-step:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 28px rgba(2, 43, 84, 0.08);
}

.wwd-pipeline-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.wwd-pipeline-node svg {
    width: 33px;
    height: 33px;
}

.wwd-pipeline-label {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.wwd-pipeline-step--stall {
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.12);
}

.wwd-pipeline-step--stall .wwd-pipeline-node {
    color: #dc2626;
}

.wwd-pipeline-step--stall .wwd-pipeline-label {
    color: #991b1b;
}

.wwd-pipeline-tag {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    background: #dc2626;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.wwd-pipeline-step--target {
    background: linear-gradient(135deg, rgba(79, 171, 72, 0.12), rgba(2, 43, 84, 0.06));
    border-color: var(--color-accent);
    box-shadow: 0 6px 20px rgba(79, 171, 72, 0.15);
}

.wwd-pipeline-step--target .wwd-pipeline-node {
    color: var(--color-accent);
}

.wwd-pipeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-grow: 1;
}

.wwd-pipeline-arrow svg {
    width: 28px;
    height: 28px;
}

.wwd-pipeline-arrow--faded {
    color: rgba(220, 38, 38, 0.4);
}

/* Systems Gap Section */
.wwd-wwe-systems-header {
    text-align: center;
    margin-bottom: 44px;
}

.wwd-wwe-systems-header .section-title {
    margin-bottom: 8px;
}

.wwd-wwe-systems-header .section-subtitle {
    font-size: 1.15rem;
    color: var(--color-accent);
    font-weight: 600;
}

.wwd-wwe-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.wwd-wwe-cards--four {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 1199px) {
    .wwd-wwe-cards--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .wwd-wwe-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .wwd-wwe-cards--four {
        grid-template-columns: 1fr;
    }

    .wwd-wwe-stall-card {
        padding: 36px 20px;
    }

    .wwd-wwe-pipeline {
        flex-direction: column;
        gap: 24px;
    }

    .wwd-pipeline-arrow {
        transform: rotate(90deg);
        flex-grow: 0;
    }
}

.wwd-wwe-card-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 12px;
    line-height: 1;
    opacity: 0.9;
}

.wwd-wwe-card-tagline {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 14px;
    line-height: 1.4;
}

.wwd-wwe-card-body {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0;
}

.wwd-wwe-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid rgba(2, 43, 84, 0.08);
    box-shadow: 0 10px 30px rgba(2, 43, 84, 0.04), 0 2px 6px rgba(2, 43, 84, 0.02);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wwd-wwe-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 171, 72, 0.35);
    box-shadow: 0 22px 48px rgba(2, 43, 84, 0.1), 0 4px 12px rgba(79, 171, 72, 0.06);
}

.wwd-wwe-card-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-accent);
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.wwd-wwe-card:hover .wwd-wwe-card-icon {
    transform: scale(1.08);
    background: transparent;
    color: var(--color-accent-hover, #5ec556);
    box-shadow: none;
}

.wwd-wwe-card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.8;
}

.wwd-wwe-card-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    background: none;
    padding: 0;
    margin-bottom: 10px;
}

.wwd-wwe-card-content {
    display: flex;
    flex-direction: column;
}

.wwd-wwe-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.wwd-wwe-card-intro {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 18px;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.wwd-wwe-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px dashed rgba(2, 43, 84, 0.1);
    padding-top: 18px;
}

.wwd-wwe-card-list li {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-text-primary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.wwd-list-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.wwd-wwe-impact-banner {
    position: relative;
    background: linear-gradient(135deg, #011d3a 0%, #022b54 50%, #033a6e 100%);
    border-radius: 28px;
    padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 64px);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 24px 60px rgba(2, 43, 84, 0.22);
    overflow: hidden;
    isolation: isolate;
}

.wwd-wwe-impact-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 171, 72, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 171, 72, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.wwd-wwe-impact-banner::after {
    content: '“';
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 16rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

@media (max-width: 767px) {
    .wwd-wwe-impact-banner {
        padding: 40px 24px;
    }
}

.wwd-wwe-impact-content {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
}

.wwd-wwe-impact-title {
    display: inline-block;
    color: #7dd56f;
    background: rgba(79, 171, 72, 0.18);
    border: 1px solid rgba(125, 213, 111, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.wwd-wwe-impact-quote {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    line-height: 1.65;
    font-weight: 300;
    margin: 0 0 36px;
    position: relative;
}

.wwd-wwe-impact-quote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.wwd-wwe-impact-response {
    margin-bottom: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.wwd-wwe-impact-response p {
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.wwd-wwe-impact-response p:first-child {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.25rem;
}

.wwd-wwe-impact-response p:last-child {
    margin-bottom: 0;
}

.wwd-wwe-impact-action .btn {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(79, 171, 72, 0.3);
}

.wwd-wwe-impact-action .btn:hover {
    background: #ffffff;
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}