/* =========================================================================
   WellFlow Sections CSS - New Content Areas
   Extends style.css with additional section styles
   ========================================================================= */

/* ---- Accent colors from color palette ---- */
:root {
    --teal: #6DD59D;
    --brand-blue: #3F3DFF;
    --purple: #6DD59D;
    --g3-start: var(--brand-blue);
    --g3-end: var(--teal);
}

/* =========================================================================
   HERO ADDITIONS — Mission / Vision / Purpose
   ========================================================================= */
.mvp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
    padding-bottom: 80px;
}

.mvp-card {
    padding: 36px 32px;
    transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}

.mvp-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
}

.mvp-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(63, 61, 255, 0.12);
    border: 1px solid rgba(63, 61, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--teal);
}

.mvp-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 12px;
}

.mvp-card p {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.65;
}

/* =========================================================================
   STATS SECTION
   ========================================================================= */
.stats-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.stat-box {
    padding: 36px 24px;
    text-align: center;
    transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(63, 61, 255, 0.4);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1.4;
}

/* Problem Box */
.problem-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px;
    align-items: center;
}

.problem-content h3 {
    font-size: 1.6rem;
    color: white;
    line-height: 1.3;
    margin-bottom: 28px;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-sec);
    line-height: 1.5;
}

.x-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #1a1a1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.infographic-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--rad-lg);
}

.infograph-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.infograph-bar {
    height: 10px;
    border-radius: 5px;
    transition: width 1s var(--ease-out-expo);
}

.infograph-caption {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    width: 100%;
}

/* =========================================================================
   SOLUTION / DIGITAL TWIN SECTION
   ========================================================================= */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pillar-card {
    padding: 36px 28px;
    transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
}

.pillar-card>p {
    font-size: 0.95rem;
    color: var(--text-sec);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pillar-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

/* Diagram Box */
.diagram-box {
    padding: 48px 40px;
    margin-bottom: 48px;
    background: rgba(10, 10, 14, 0.6);
}

/* =========================================================================
   FLOW DIAGRAM — HTML/CSS Version
   ========================================================================= */
.flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
}

.flow-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Flow nodes */
.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 20px;
    border-radius: 16px;
    border: 1px solid;
    text-align: center;
    transition: transform 0.3s var(--ease-out-expo);
}

.flow-node:hover {
    transform: translateY(-4px);
}

.flow-node--cyan {
    background: rgba(109, 213, 157, 0.06);
    border-color: rgba(109, 213, 157, 0.35);
}

.flow-node--pink {
    background: rgba(63, 61, 255, 0.06);
    border-color: rgba(63, 61, 255, 0.35);
}

.flow-node--purple {
    background: rgba(109, 213, 157, 0.06);
    border-color: rgba(109, 213, 157, 0.35);
}

.flow-node-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-node-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.flow-node-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Arrows down from inputs */
.flow-arrows-down {
    position: relative;
    width: 100%;
    height: 72px;
    pointer-events: none;
    margin: 2px 0 0;
}

.flow-arrows-down::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 70%, rgba(109, 213, 157, 0.15), rgba(63, 61, 255, 0.06) 44%, transparent 72%);
    filter: blur(8px);
}

.flow-merge-bus {
    position: absolute;
    top: 20px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6DD59D, #3F3DFF, #6DD59D);
    box-shadow: 0 0 16px rgba(63, 61, 255, 0.32);
}

.flow-merge-leg {
    position: absolute;
    top: 0;
    width: 2px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(109, 213, 157, 0.85), rgba(63, 61, 255, 0.8));
}

.flow-merge-leg-left {
    left: 16.67%;
}

.flow-merge-leg-center {
    left: 50%;
    transform: translateX(-50%);
}

.flow-merge-leg-right {
    left: 83.33%;
}

.flow-merge-leg span {
    position: absolute;
    top: -1px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translate(-50%, 0);
    background: #6DD59D;
    box-shadow: 0 0 11px rgba(109, 213, 157, 0.8);
    animation: mergeLegPulse 2.4s linear infinite;
}

.flow-merge-leg-center span {
    background: #3F3DFF;
    box-shadow: 0 0 11px rgba(63, 61, 255, 0.82);
    animation-delay: 0.5s;
}

.flow-merge-leg-right span {
    animation-delay: 1s;
}

.flow-merge-core {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #6DD59D;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 14px rgba(109, 213, 157, 0.82);
    animation: mergeCorePulse 1.9s ease-in-out infinite;
}

.flow-merge-tail {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 2px;
    height: 52px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(63, 61, 255, 0.82), rgba(109, 213, 157, 0.9));
}

.flow-merge-tail span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translate(-50%, 0);
    background: #3F3DFF;
    box-shadow: 0 0 12px rgba(63, 61, 255, 0.82);
    animation: mergeTailPulse 2.5s linear infinite;
}

@keyframes mergeLegPulse {
    0% {
        transform: translate(-50%, -2px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 16px);
        opacity: 0;
    }
}

@keyframes mergeTailPulse {
    0% {
        transform: translate(-50%, -1px);
        opacity: 0;
    }

    16% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 45px);
        opacity: 0;
    }
}

@keyframes mergeCorePulse {
    0%,
    100% {
        opacity: 0.75;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.14);
    }
}

/* Digital Twin center */
.flow-center {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: center;
    margin: 8px 0;
}

.flow-twin {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-twin-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid rgba(63, 61, 255, 0.8);
    box-shadow: 0 0 32px rgba(63, 61, 255, 0.3), 0 0 64px rgba(109, 213, 157, 0.1), inset 0 0 32px rgba(63, 61, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: twinPulse 4s ease-in-out infinite;
}

@keyframes twinPulse {

    0%,
    100% {
        box-shadow: 0 0 32px rgba(63, 61, 255, 0.3), 0 0 64px rgba(109, 213, 157, 0.1), inset 0 0 32px rgba(63, 61, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 48px rgba(63, 61, 255, 0.5), 0 0 80px rgba(109, 213, 157, 0.2), inset 0 0 48px rgba(63, 61, 255, 0.15);
    }
}

.flow-twin-inner {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 1.5px solid rgba(109, 213, 157, 0.4);
    background: rgba(63, 61, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0 10px;
    position: relative;
}

.flow-twin-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(63, 61, 255, 0.2);
    animation: expandFade 3s ease-out infinite;
}

@keyframes expandFade {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.flow-twin-label {
    display: block;
    max-width: 92px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
}

.flow-twin-sub {
    display: block;
    max-width: 92px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal);
    line-height: 1.15;
    text-align: center;
    white-space: normal;
}

/* Center arrow */
.flow-arrow-center {
    display: flex;
    justify-content: center;
    margin: 10px 0 14px;
}

.flow-link-core {
    position: relative;
    width: 18px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(109, 213, 157, 0.9), rgba(63, 61, 255, 0.9));
    box-shadow: 0 0 18px rgba(63, 61, 255, 0.35);
    overflow: hidden;
}

.flow-link-core::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px solid rgba(109, 213, 157, 0.25);
}

.flow-link-pulse {
    position: absolute;
    top: 4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6DD59D;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(109, 213, 157, 0.8);
    animation: corePulse 1.8s ease-in-out infinite;
}

@keyframes corePulse {
    0% {
        transform: translate(-50%, -2px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 32px);
        opacity: 0;
    }
}

/* AI Box */
.flow-ai {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: center;
    margin: 0 0 4px;
}

.flow-ai-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    border: 1.5px dashed rgba(63, 61, 255, 0.5);
    border-radius: 14px;
    background: rgba(63, 61, 255, 0.06);
    min-width: 280px;
}

.flow-ai-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(109, 213, 157, 0.1);
    border: 1px solid rgba(109, 213, 157, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-ai-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.flow-ai-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.flow-fan-arrows {
    position: relative;
    width: 100%;
    height: 78px;
    margin: 8px 0 10px;
    pointer-events: none;
}

.flow-fan-arrows::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 8px;
    bottom: 8px;
    background: radial-gradient(circle at 50% 0%, rgba(109, 213, 157, 0.2), rgba(63, 61, 255, 0.08) 45%, transparent 72%);
    filter: blur(8px);
}

.flow-bridge-hub {
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6DD59D;
    transform: translateX(-50%);
    box-shadow: 0 0 14px rgba(109, 213, 157, 0.8);
}

.flow-bridge-bus {
    position: absolute;
    top: 22px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6DD59D, #3F3DFF, #6DD59D);
    box-shadow: 0 0 16px rgba(63, 61, 255, 0.35);
}

.flow-bridge-drop {
    position: absolute;
    top: 22px;
    width: 2px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(63, 61, 255, 0.8), rgba(109, 213, 157, 0.85));
}

.flow-bridge-drop-left {
    left: 16.67%;
}

.flow-bridge-drop-center {
    left: 50%;
    transform: translateX(-50%);
}

.flow-bridge-drop-right {
    left: 83.33%;
}

.flow-bridge-drop span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translate(-50%, 0);
    background: #3F3DFF;
    box-shadow: 0 0 12px rgba(63, 61, 255, 0.8);
    animation: bridgeData 2.6s linear infinite;
}

.flow-bridge-drop-left span {
    background: #6DD59D;
    box-shadow: 0 0 12px rgba(109, 213, 157, 0.8);
    animation-delay: 0.2s;
}

.flow-bridge-drop-center span {
    animation-delay: 0.8s;
}

.flow-bridge-drop-right span {
    background: #6DD59D;
    box-shadow: 0 0 12px rgba(109, 213, 157, 0.8);
    animation-delay: 1.4s;
}

@keyframes bridgeData {
    0% {
        transform: translate(-50%, -2px);
        opacity: 0;
    }

    14% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 48px);
        opacity: 0;
    }
}

/* Legend */
.diagram-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    flex-shrink: 0;
}

.legend-item span {
    font-size: 0.875rem;
    color: var(--text-sec);
}

/* Responsive flow diagram */
@media (max-width: 768px) {
    .flow-row {
        grid-template-columns: 1fr;
    }

    .flow-arrows-down {
        display: none;
    }

    .flow-fan-arrows {
        display: none;
    }

    .flow-ai-box {
        min-width: 0;
        width: 100%;
    }

    .diagram-box {
        padding: 32px 20px;
    }
}



/* Features Grid (8 tiles 4x2) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.feature-tile {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}

.feature-tile:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.feature-tile h4 {
    font-size: 1.05rem;
    color: white;
    margin: 0;
}

.feature-tile p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* =========================================================================
   STORY / VALIDATION SECTION
   ========================================================================= */
.story-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.story-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: var(--rad-xl);
}

.story-video {
    background: #111114;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d12, #1a1a22);
    position: relative;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(63, 61, 255, 0.15), transparent 70%);
}

.play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.play-btn:hover {
    background: rgba(63, 61, 255, 0.3);
    border-color: var(--brand-blue);
    transform: scale(1.1);
}

.story-steps {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.story-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    color: var(--text-sec);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-num {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--teal);
    min-width: 28px;
    padding-top: 1px;
}

.story-step strong {
    color: white;
}

/* =========================================================================
   AUDIENCE / POUR QUI SECTION
   ========================================================================= */
.audience-section {
    border-top: 1px solid var(--border-subtle);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.audience-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}

.audience-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
}

.audience-card.featured-card {
    border-color: rgba(63, 61, 255, 0.35);
    background: rgba(20, 20, 40, 0.6);
}

.audience-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.audience-card h3 {
    font-size: 1.3rem;
    color: white;
}

.audience-card>p {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.6;
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.audience-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
}

.audience-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-blue);
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.contact-inner {
    position: relative;
    overflow: hidden;
    padding: 60px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-wrap h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-sec);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--rad-sm);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(63, 61, 255, 0.5);
    background: rgba(63, 61, 255, 0.05);
}

.submit-btn {
    align-self: flex-start;
    background: var(--brand-blue);
    border-radius: var(--rad-sm);
    color: white;
    font-weight: 700;
    padding: 16px 36px;
}

.submit-btn:hover {
    background: #6DD59D;
    color: #050505;
    transform: translateX(4px);
}

/* =========================================================================
   FOOTER UPDATES
   ========================================================================= */
.footer-follow {
    margin-top: 24px;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .mvp-grid {
        grid-template-columns: 1fr;
    }

    .problem-box {
        grid-template-columns: 1fr;
    }

    .story-box {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        padding: 40px 28px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diagram-connections {
        gap: 16px;
    }

    .diagram-node.node-sm {
        min-width: 80px;
        padding: 12px 8px;
        font-size: 0.75rem;
    }

    .story-steps {
        padding: 32px 24px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .problem-box {
        padding: 28px 24px;
    }
}

/* =========================================================================
   UTILITY CLASSES — extracted from inline styles (CSP unsafe-inline removal)
   ========================================================================= */

.gradient-teal-blue-bg { background: linear-gradient(135deg, #6DD59D, #3F3DFF); }
.gradient-blue-teal-bg { background: linear-gradient(135deg, #3F3DFF, #6DD59D); }

.infograph-bar--a { width: 75%; background: linear-gradient(90deg, #3F3DFF, #6DD59D); }
.infograph-bar--b { width: 45%; background: linear-gradient(90deg, #3F3DFF44, #3F3DFF); }
.infograph-bar--c { width: 90%; background: linear-gradient(90deg, #6DD59D44, #6DD59D); }

.diagram-title {
    text-align: center;
    margin-bottom: 48px;
    color: white;
    font-size: 1.3rem;
}

.flow-node-icon--teal {
    background: rgba(109, 213, 157, 0.15);
    border-color: #6DD59D;
}

.flow-node-icon--blue {
    background: rgba(63, 61, 255, 0.15);
    border-color: #3F3DFF;
}

.mt-40 { margin-top: 40px; }
.mt-80 { margin-top: 80px; }

.footer-follow-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.footer-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.submit-btn--sent {
    opacity: 0.7;
    cursor: not-allowed;
}
}
