/* ============================================================
   DESH FUNDING — WHYDESH.CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
    --why-green: #1a9e63;
    --why-green-dark: #0f6340;
    --why-green-light: #f0faf4;
    --why-green-mid: #d6f3e2;
    --why-gold: #f59e0b;
    --why-gold-dark: #d97706;
    --why-gold-light: #fffbeb;
    --why-gold-mid: #fde68a;
    --why-teal: #0d9488;
    --why-teal-light: #f0fdfa;
    --why-teal-mid: #99f6e4;
    --why-sky: #0ea5e9;
    --why-sky-light: #f0f9ff;
    --why-sky-mid: #bae6fd;
    --why-violet: #7c3aed;
    --why-violet-dark: #6d28d9;
    --why-violet-light: #f5f3ff;
    --why-violet-mid: #ddd6fe;
    --why-orange: #f97316;
    --why-orange-dark: #ea580c;
    --why-orange-light: #fff7ed;
    --why-orange-mid: #fed7aa;
    --why-text: #111827;
    --why-text-muted: #6b7280;
    --why-text-subtle: #9ca3af;
    --why-border: rgba(255, 255, 255, 0.10);
    --why-white: #ffffff;
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1.0);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1.0);
}

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

body {
    font-family: 'DM Sans', system-ui, sans-serif;
}

/* ============================================================
   1. SECTION
   ============================================================ */
.why {
    position: relative;
    background: linear-gradient(160deg, #041810 0%, #031410 35%, #05200f 65%, #030e09 100%);
    padding: 6.5rem 0 5rem;
    overflow: hidden;
    isolation: isolate;
}

/* ── BG layers ── */
.why__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.why__bg-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 5% 20%, rgba(26, 158, 99, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 95% 80%, rgba(124, 58, 237, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 80% 80% at 50% 110%, rgba(15, 99, 64, 0.20) 0%, transparent 60%);
}

.why__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.why__bg-orb--1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(26, 158, 99, 0.18) 0%, transparent 70%);
    animation: orbDrift 14s ease-in-out infinite alternate;
}

.why__bg-orb--2 {
    width: 400px;
    height: 400px;
    bottom: -60px;
    right: -60px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    animation: orbDrift 18s ease-in-out infinite alternate-reverse;
}

.why__bg-orb--3 {
    width: 300px;
    height: 300px;
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
    animation: orbDrift 22s ease-in-out infinite alternate;
}

.why__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 158, 99, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 158, 99, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 20%, transparent 100%);
}

.why__bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* ============================================================
   2. CONTAINER
   ============================================================ */
.why__container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   3. HEADER
   ============================================================ */
.why__header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 1;
}

.why__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--why-green);
    margin-bottom: 1.1rem;
}

.why__eyebrow-pip {
    width: 28px;
    height: 1.5px;
    background: var(--why-green);
    border-radius: 99px;
    display: inline-block;
    opacity: 0.6;
}

.why__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
}

.why__heading em {
    font-style: italic;
    background: linear-gradient(135deg, #4ade80 0%, var(--why-green) 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why__subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.72;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================================
   4. GRID
   ============================================================ */
.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

/* Featured cards span 1 col but are taller — handled via content */
/* Layout: [feat-green][gold][teal] / [sky][feat-violet][orange] */
.why__card:nth-child(1) {
    grid-column: 1;
}

.why__card:nth-child(2) {
    grid-column: 2;
}

.why__card:nth-child(3) {
    grid-column: 3;
}

.why__card:nth-child(4) {
    grid-column: 1;
}

.why__card:nth-child(5) {
    grid-column: 2;
}

.why__card:nth-child(6) {
    grid-column: 3;
}

/* ============================================================
   5. BASE CARD
   ============================================================ */
.why__card {
    position: relative;
    border-radius: 22px;
    border: 1px solid var(--why-border);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.75rem 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
    transition:
        transform 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
    cursor: default;
    opacity: 1;
    outline: none;
}

.why__card:hover,
.why__card:focus-visible {
    transform: translateY(-7px);
}

.why__card:focus-visible {
    outline: 2px solid var(--why-green);
    outline-offset: 3px;
}

/* Color-tinted borders & shadows on hover */
.why__card--green:hover {
    border-color: rgba(26, 158, 99, 0.4);
    box-shadow: 0 16px 48px rgba(26, 158, 99, 0.18);
}

.why__card--gold:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 16px 48px rgba(245, 158, 11, 0.14);
}

.why__card--teal:hover {
    border-color: rgba(13, 148, 136, 0.4);
    box-shadow: 0 16px 48px rgba(13, 148, 136, 0.14);
}

.why__card--sky:hover {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 16px 48px rgba(14, 165, 233, 0.14);
}

.why__card--violet:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.16);
}

.why__card--orange:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 16px 48px rgba(249, 115, 22, 0.14);
}

/* Top accent stripe */
.why__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 22px 22px 0 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.why__card:hover::before {
    opacity: 1;
}

.why__card--green::before {
    background: linear-gradient(90deg, var(--why-green), #34d399, transparent);
}

.why__card--gold::before {
    background: linear-gradient(90deg, var(--why-gold), #fcd34d, transparent);
}

.why__card--teal::before {
    background: linear-gradient(90deg, var(--why-teal), #5eead4, transparent);
}

.why__card--sky::before {
    background: linear-gradient(90deg, var(--why-sky), #7dd3fc, transparent);
}

.why__card--violet::before {
    background: linear-gradient(90deg, var(--why-violet), #a78bfa, transparent);
}

.why__card--orange::before {
    background: linear-gradient(90deg, var(--why-orange), #fdba74, transparent);
}

/* Corner glow shape */
.why__card-bg-shape {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
}

.why__card:hover .why__card-bg-shape {
    opacity: 1;
}

.why__card--green .why__card-bg-shape {
    background: radial-gradient(circle, rgba(26, 158, 99, 0.15) 0%, transparent 70%);
}

.why__card--gold .why__card-bg-shape {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
}

.why__card--teal .why__card-bg-shape {
    background: radial-gradient(circle, rgba(13, 148, 136, 0.13) 0%, transparent 70%);
}

.why__card--sky .why__card-bg-shape {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
}

.why__card--violet .why__card-bg-shape {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 70%);
}

.why__card--orange .why__card-bg-shape {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
}

/* ── Featured card ── */
.why__card--featured {
    padding-bottom: 1.6rem;
}

/* ============================================================
   6. CARD TOP ROW
   ============================================================ */
.why__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

/* ── Icon wrap ── */
.why__icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-spring);
}

.why__card:hover .why__icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.why__icon-wrap--green {
    background: rgba(26, 158, 99, 0.18);
    color: #4ade80;
}

.why__icon-wrap--gold {
    background: rgba(245, 158, 11, 0.18);
    color: #fcd34d;
}

.why__icon-wrap--teal {
    background: rgba(13, 148, 136, 0.18);
    color: #5eead4;
}

.why__icon-wrap--sky {
    background: rgba(14, 165, 233, 0.18);
    color: #7dd3fc;
}

.why__icon-wrap--violet {
    background: rgba(124, 58, 237, 0.18);
    color: #c4b5fd;
}

.why__icon-wrap--orange {
    background: rgba(249, 115, 22, 0.18);
    color: #fdba74;
}

.why__icon {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 2;
}

/* Pulsing ring on icon */
.why__icon-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 18px;
    border: 1.5px solid currentColor;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.3s, transform 0.3s;
}

.why__card:hover .why__icon-pulse {
    opacity: 0.2;
    transform: scale(1.05);
    animation: iconRingPulse 2s ease-out infinite;
}

/* Color overrides */
.why__icon-pulse--gold {
    color: var(--why-gold);
}

.why__icon-pulse--teal {
    color: var(--why-teal);
}

.why__icon-pulse--sky {
    color: var(--why-sky);
}

.why__icon-pulse--violet {
    color: var(--why-violet);
}

.why__icon-pulse--orange {
    color: var(--why-orange);
}

/* ── Tag ── */
.why__card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.22rem 0.65rem;
    border-radius: 99px;
    white-space: nowrap;
}

.why__card-tag--green {
    background: rgba(26, 158, 99, 0.15);
    color: #4ade80;
    border: 1px solid rgba(26, 158, 99, 0.25);
}

.why__card-tag--gold {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.why__card-tag--teal {
    background: rgba(13, 148, 136, 0.15);
    color: #5eead4;
    border: 1px solid rgba(13, 148, 136, 0.25);
}

.why__card-tag--sky {
    background: rgba(14, 165, 233, 0.15);
    color: #7dd3fc;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.why__card-tag--violet {
    background: rgba(124, 58, 237, 0.15);
    color: #c4b5fd;
    border: 1px solid rgba(124, 58, 237, 0.25);
}

.why__card-tag--orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.25);
}

/* ============================================================
   7. CARD BODY
   ============================================================ */
.why__card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.why__card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.65;
    flex-grow: 1;
}

/* ============================================================
   8. CARD ILLUSTRATIONS
   ============================================================ */
.why__card-illustration {
    margin-top: 0.4rem;
    border-radius: 12px;
    overflow: hidden;
}

/* ── Chat illustration ── */
.why__mini-chat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.why__mini-msg {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
}

.why__mini-msg--out {
    flex-direction: row-reverse;
}

.why__mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.why__mini-avatar--green {
    background: linear-gradient(135deg, var(--why-green), #0d9488);
}

.why__mini-avatar--gold {
    background: linear-gradient(135deg, var(--why-gold), #f97316);
}

.why__mini-bubble {
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 75%;
}

.why__mini-bubble--in {
    background: rgba(26, 158, 99, 0.18);
    color: #a7f3d0;
    border: 1px solid rgba(26, 158, 99, 0.2);
}

.why__mini-bubble--out {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

.why__mini-lock {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.3);
    justify-content: center;
    margin-top: 0.15rem;
}

.why__notif-dot {
    animation: notifBlink 1.5s ease-in-out infinite;
}

/* ── File illustration ── */
.why__mini-files {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 0.65rem;
}

.why__mini-file {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.7rem;
    transition: background 0.2s;
}

.why__mini-file:hover {
    background: rgba(255, 255, 255, 0.08);
}

.why__mini-file-icon {
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
}

.why__mini-file-name {
    color: rgba(255, 255, 255, 0.65);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.why__mini-file-status {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 99px;
    flex-shrink: 0;
}

.why__mini-file-status--ok {
    background: rgba(26, 158, 99, 0.2);
    color: #4ade80;
}

.why__mini-file-status--pending {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

/* Animation delays */
.why__mini-file--1 {
    animation: fileSlideIn 0.4s var(--ease-out) 0.2s both;
}

.why__mini-file--2 {
    animation: fileSlideIn 0.4s var(--ease-out) 0.35s both;
}

.why__mini-file--3 {
    animation: fileSlideIn 0.4s var(--ease-out) 0.5s both;
}

/* ── Repay illustration ── */
.why__mini-repay {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why__mini-repay-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}

.why__mini-repay-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--why-teal), #5eead4);
    border-radius: 99px;
    transition: width 1.2s var(--ease-out) 0.5s;
}

.why__card--teal:hover .why__mini-repay-fill,
.why__card--teal .why__mini-repay-fill {
    width: 50%;
}

.why__mini-repay-dots {
    display: flex;
    gap: 0.3rem;
}

.why__rdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
}

.why__rdot--done {
    background: var(--why-teal);
}

.why__rdot--active {
    background: var(--why-teal);
    box-shadow: 0 0 6px var(--why-teal);
    animation: rdotPulse 1.5s ease-in-out infinite;
}

.why__rdot--next {
    background: rgba(255, 255, 255, 0.12);
}

.why__mini-repay-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'DM Mono', monospace;
}

/* ── Profile illustration ── */
.why__mini-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 0.7rem;
}

.why__mini-profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--why-sky), #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.why__mini-profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    min-width: 0;
}

.why__mini-profile-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.why__mini-profile-score {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.why__mini-score-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    overflow: hidden;
    display: block;
}

.why__mini-score-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--why-sky), #38bdf8);
    border-radius: 99px;
    width: 0%;
    transition: width 1.2s var(--ease-out) 0.4s;
}

.why__card--sky:hover .why__mini-score-fill,
.why__card--sky .why__mini-score-fill {
    width: 88%;
}

.why__mini-score-val {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--why-sky);
    flex-shrink: 0;
}

.why__mini-badges {
    display: flex;
    gap: 0.3rem;
}

.why__mini-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 99px;
}

.why__mini-badge--green {
    background: rgba(26, 158, 99, 0.18);
    color: #4ade80;
}

.why__mini-badge--sky {
    background: rgba(14, 165, 233, 0.18);
    color: #7dd3fc;
}

/* ── Timeline illustration (approval) ── */
.why__mini-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0.2rem;
}

.why__mini-tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.why__mini-tl-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.why__mini-tl-dot--done {
    background: rgba(124, 58, 237, 0.25);
    border-color: var(--why-violet);
    color: #c4b5fd;
    font-size: 0.7rem;
}

.why__mini-tl-dot--active {
    background: var(--why-violet);
    border-color: var(--why-violet);
    color: #fff;
    font-size: 0.65rem;
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
}

.why__mini-tl-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid var(--why-violet);
    animation: tlPulse 1.8s ease-out infinite;
}

.why__mini-tl-line {
    position: absolute;
    top: 13px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.why__mini-tl-line--done {
    background: var(--why-violet);
    opacity: 0.5;
}

.why__mini-tl-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.4rem;
    text-align: center;
    white-space: nowrap;
}

.why__mini-tl-item--done .why__mini-tl-label {
    color: rgba(255, 255, 255, 0.65);
}

.why__mini-tl-item--active .why__mini-tl-label {
    color: #c4b5fd;
    font-weight: 700;
}

.why__mini-tl-time {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.25);
    font-family: 'DM Mono', monospace;
    margin-top: 0.1rem;
}

/* ── Notifications illustration ── */
.why__mini-notifs {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.why__mini-notif {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.7rem;
    transition: background 0.2s;
}

.why__mini-notif:hover {
    background: rgba(255, 255, 255, 0.09);
}

.why__mini-notif--1 {
    animation: notifSlide 0.4s var(--ease-out) 0.15s both;
}

.why__mini-notif--2 {
    animation: notifSlide 0.4s var(--ease-out) 0.3s both;
}

.why__mini-notif--3 {
    animation: notifSlide 0.4s var(--ease-out) 0.45s both;
}

.why__mini-notif-icon {
    font-size: 0.9rem;
    line-height: 1;
    flex-shrink: 0;
}

.why__mini-notif-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.why__mini-notif-text strong {
    color: rgba(255, 255, 255, 0.9);
}

.why__mini-notif-time {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* ============================================================
   9. CARD FOOTER
   ============================================================ */
.why__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why__card-stat {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.why__card-stat strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.why__card-arrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.2s, transform 0.2s var(--ease-spring);
}

.why__card:hover .why__card-arrow {
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(4px);
}

/* ============================================================
   10. BOTTOM CTA STRIP
   ============================================================ */
.why__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem 2.5rem;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
    opacity: 1;
}

.why__bottom-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.why__bottom-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.why__bottom-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.why__bottom-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.why__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ease-out), transform 0.15s var(--ease-spring);
    white-space: nowrap;
}

.why__btn:hover {
    transform: translateY(-2px);
}

.why__btn:active {
    transform: scale(0.97);
}

.why__btn--primary {
    background: linear-gradient(135deg, var(--why-green), var(--why-teal));
    color: #fff;
    box-shadow: 0 4px 20px rgba(26, 158, 99, 0.3);
}

.why__btn--primary:hover {
    box-shadow: 0 8px 32px rgba(26, 158, 99, 0.45);
}

.why__btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.75);
}

.why__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ============================================================
   11. ENTRY ANIMATIONS
   ============================================================ */
[data-why-animate] {
    opacity: 1;
    transform: translateY(0);
}

.why--animate [data-why-animate] {
    opacity: 0;
    transform: translateY(30px);
    animation: whyUp 0.65s var(--ease-out) forwards;
}

[data-delay="0"] {
    animation-delay: 0.05s !important;
}

[data-delay="1"] {
    animation-delay: 0.16s !important;
}

[data-delay="2"] {
    animation-delay: 0.27s !important;
}

[data-delay="3"] {
    animation-delay: 0.38s !important;
}

[data-delay="4"] {
    animation-delay: 0.49s !important;
}

[data-delay="5"] {
    animation-delay: 0.60s !important;
}

[data-delay="6"] {
    animation-delay: 0.72s !important;
}

/* ============================================================
   12. KEYFRAMES
   ============================================================ */
@keyframes whyUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes orbDrift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, 20px) scale(1.05);
    }
}

@keyframes iconRingPulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    60% {
        transform: scale(1.2);
        opacity: 0.05;
    }

    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

@keyframes fileSlideIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

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

@keyframes notifSlide {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

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

@keyframes rdotPulse {

    0%,
    100% {
        box-shadow: 0 0 4px var(--why-teal);
    }

    50% {
        box-shadow: 0 0 12px var(--why-teal), 0 0 24px var(--why-teal);
    }
}

@keyframes notifBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes tlPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ============================================================
   13. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why__card:nth-child(1),
    .why__card:nth-child(2),
    .why__card:nth-child(3),
    .why__card:nth-child(4),
    .why__card:nth-child(5),
    .why__card:nth-child(6) {
        grid-column: auto;
    }
}

@media (max-width: 700px) {
    .why {
        padding: 4.5rem 0 3.5rem;
    }

    .why__container {
        padding: 0 1.25rem;
    }

    .why__header {
        margin-bottom: 2.5rem;
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why__card-illustration {
        display: none;
    }

    .why__card {
        padding: 1.35rem 1.3rem 1.2rem;
    }

    .why__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem 1.5rem;
        gap: 1.25rem;
    }

    .why__bottom-actions {
        width: 100%;
    }

    .why__btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .why__bottom-actions {
        flex-direction: column;
    }

    .why__btn {
        width: 100%;
    }
}