/* --- Brand Variables (Global) --- */
:root {
    --pnuma-bg: #FAFAFA;
    --pnuma-dark: #0F172A;
    --pnuma-navy: #1A2E44;
    --pnuma-slate: #6B8BA4;
    --pnuma-white: #ffffff;
    --pnuma-border: #E2E8F0;
    --pnuma-gradient: linear-gradient(135deg, #1A2E44, #6B8BA4);
    --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 20px 50px rgba(15, 23, 42, 0.14);
}

/* ======== RESET & BASE ======== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Assistant', sans-serif;
    background-color: var(--pnuma-bg);
    color: var(--pnuma-dark);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: 'Noto Sans Hebrew', sans-serif; line-height: 1.15; font-weight: 800; }

/* ======== HEADER ======== */
.nexus-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    direction: ltr;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0.95) 0%, rgba(250, 250, 250, 0) 100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease, background 0.3s ease;
}
.nexus-header.scrolled {
    background: rgba(250, 250, 250, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(15, 23, 42, 0.06);
}
.header-logo { display: flex; align-items: center; z-index: 10001; }
.header-logo img { height: 42px; width: auto; display: block; transition: height 0.3s ease; }
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}
.menu-text {
    font-family: 'Assistant', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--pnuma-dark);
    transition: color 0.3s;
}
.hamburger-lines {
    width: 28px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.line {
    width: 100%;
    height: 2px;
    background-color: var(--pnuma-dark);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}
.menu-open .line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background-color: var(--pnuma-slate); }
.menu-open .line:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-open .line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background-color: var(--pnuma-slate); }
.menu-open .menu-text { color: var(--pnuma-slate); }

/* ======== FULLSCREEN MENU ======== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--pnuma-dark);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    clip-path: circle(0% at 95% 5%);
    direction: ltr;
}
.menu-bg-texture {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(107, 139, 164, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}
.nav-links { list-style: none; padding: 0; margin: 0; text-align: center; position: relative; z-index: 2; }
.nav-item { margin: 15px 0; overflow: hidden; }
.nav-link {
    display: block;
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--pnuma-white);
    text-decoration: none;
    transition: all 0.4s ease;
    transform: translateY(100%);
}
.nav-link:hover { color: var(--pnuma-slate); transform: translateX(10px); }
.menu-footer {
    position: absolute;
    bottom: 50px;
    display: flex;
    gap: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Assistant', sans-serif;
    font-size: 0.85rem;
    opacity: 0;
}
.menu-footer a { color: inherit; text-decoration: none; transition: color 0.3s; }
.menu-footer a:hover { color: var(--pnuma-slate); }

/* ======== SECTION 1: HERO ======== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background-color: var(--pnuma-bg);
    overflow: hidden;
}
.hero-bg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.12;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(250, 250, 250, 0.3) 0%, rgba(250, 250, 250, 0.85) 70%);
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    position: relative;
    z-index: 2;
    max-width: 750px;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--pnuma-navy);
    animation: pulse 2s ease-in-out infinite;
}
.label-text {
    font-family: 'Assistant', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pnuma-navy);
    font-weight: 600;
}
.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--pnuma-dark);
}
.gradient-text {
    background: var(--pnuma-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #475569;
    max-width: 560px;
}
.hero-cta-wrapper { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--pnuma-gradient);
    color: var(--pnuma-white);
    font-family: 'Assistant', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--pnuma-bg), 0 0 0 4px var(--pnuma-navy);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    color: var(--pnuma-navy);
    font-family: 'Assistant', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: 1.5px solid var(--pnuma-border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-ghost:hover {
    border-color: var(--pnuma-navy);
    background: rgba(26, 46, 68, 0.04);
}
.btn-ghost svg { transition: transform 0.3s ease; }
.btn-ghost:hover svg { transform: translateX(-4px); }

/* ======== SECTION 2: THE DEAL ======== */
.deal-section {
    position: relative;
    background-color: var(--pnuma-dark);
    color: var(--pnuma-bg);
    padding: 120px 60px;
    overflow: hidden;
}
.deal-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(107, 139, 164, 0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
}
.deal-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.deal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.deal-label {
    display: inline-block;
    font-family: 'Assistant', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pnuma-slate);
    font-weight: 700;
    margin-bottom: 20px;
}
.deal-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--pnuma-white);
    margin-bottom: 24px;
}
.deal-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.7);
    max-width: 460px;
}
.deal-sides { display: flex; flex-direction: column; gap: 36px; }
.deal-side h3 {
    font-family: 'Assistant', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pnuma-slate);
    margin-bottom: 10px;
}
.deal-side p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(250, 250, 250, 0.65);
}

/* ======== SECTION 3: MARKET & ECOSYSTEM ======== */
.market-section {
    padding: 120px 60px;
    background-color: var(--pnuma-bg);
    position: relative;
    overflow: hidden;
}
.market-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.market-header { text-align: center; margin-bottom: 80px; }
.section-label {
    display: block;
    font-family: 'Assistant', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pnuma-navy);
    font-weight: 700;
    margin-bottom: 16px;
}
.market-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--pnuma-dark);
    line-height: 1.15;
}
.market-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(26, 46, 68, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringRotate 30s linear infinite;
}
.ring-1 { width: 300px; height: 300px; }
.ring-2 { width: 500px; height: 500px; animation-direction: reverse; animation-duration: 40s; }
.ring-3 { width: 700px; height: 700px; animation-duration: 50s; }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}
.pillar-item {
    background: var(--pnuma-white);
    border: 1px solid var(--pnuma-border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s ease;
    text-align: center;
}
.pillar-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 46, 68, 0.12);
}
.pillar-badge {
    display: inline-block;
    font-family: 'Assistant', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pnuma-white);
    background: var(--pnuma-gradient);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.pillar-title {
    font-family: 'Assistant', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pnuma-dark);
    margin-bottom: 12px;
}
.pillar-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748B;
}

/* ======== SECTION 4: VALUE PROPOSITION (BENTO GRID) ======== */
.values-section {
    padding: 120px 60px;
    background-color: var(--pnuma-bg);
}
.values-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.values-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--pnuma-dark);
    line-height: 1.15;
    margin-bottom: 60px;
}
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}
.bento-card {
    background: var(--pnuma-white);
    border: 1px solid var(--pnuma-border);
    border-radius: 20px;
    padding: 36px 30px;
    text-align: right;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pnuma-gradient);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 20px;
    pointer-events: none;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.bento-card:hover::after { opacity: 0.03; }
.bento-large { grid-row: span 1; }
.bento-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.bento-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.bento-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.bento-card:nth-child(4) { grid-column: 1 / span 3; grid-row: 2; display: grid; grid-template-columns: auto 1fr; gap: 0 24px; align-items: center; text-align: right; }
.bento-card:nth-child(4) .bento-icon { grid-row: 1 / span 2; }
.bento-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 46, 68, 0.06);
    border-radius: 16px;
    margin-bottom: 20px;
    color: var(--pnuma-navy);
    position: relative;
    z-index: 1;
}
.bento-card:nth-child(4) .bento-icon { margin-bottom: 0; }
.bento-card h3 {
    font-family: 'Assistant', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pnuma-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.bento-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #64748B;
    position: relative;
    z-index: 1;
}

/* ======== SECTION 5: PRODUCT — DASHBOARD ======== */
.dashboard-section {
    padding: 120px 60px;
    background-color: #F1F5F9;
}
.dashboard-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.dashboard-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--pnuma-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}
.dashboard-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 500px;
    margin: 0 auto 60px;
    line-height: 1.7;
}
.dashboard-frame {
    background: var(--pnuma-gradient);
    border-radius: 26px;
    padding: 2px;
    box-shadow: var(--shadow-xl);
    animation: dashboardBob 5s ease-in-out infinite;
}
.dashboard-mockup {
    background: var(--pnuma-white);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 400px;
    overflow: hidden;
    text-align: right;
}
.dash-sidebar {
    background: var(--pnuma-dark);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.dash-sidebar-logo { padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.dash-logo-img { height: 28px; width: auto; filter: brightness(10); }
.dash-nav { display: flex; flex-direction: column; gap: 6px; }
.dash-nav-item {
    display: block;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
}
.dash-nav-item:hover { color: rgba(255, 255, 255, 0.85); background: rgba(255, 255, 255, 0.05); }
.dash-nav-item.active {
    color: var(--pnuma-white);
    background: rgba(107, 139, 164, 0.2);
    font-weight: 600;
}
.dash-main { padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.dash-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dash-header-bar h3 {
    font-family: 'Assistant', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pnuma-dark);
}
.dash-date {
    font-family: 'Assistant', sans-serif;
    font-size: 0.8rem;
    color: #94A3B8;
    font-weight: 500;
}
.dash-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dash-event-card {
    background: var(--pnuma-bg);
    border: 1px solid var(--pnuma-border);
    border-radius: 16px;
    padding: 22px;
    text-align: right;
    transition: all 0.3s ease;
}
.dash-event-card:hover { box-shadow: var(--shadow-md); }
.dash-event-meta { display: flex; gap: 10px; margin-bottom: 12px; align-items: center; }
.dash-event-date {
    font-family: 'Assistant', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pnuma-navy);
    background: rgba(26, 46, 68, 0.08);
    padding: 4px 10px;
    border-radius: 8px;
}
.dash-event-type {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pnuma-slate);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.dash-event-card h4 {
    font-family: 'Assistant', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pnuma-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}
.dash-event-card p {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-bottom: 14px;
}
.dash-register-btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Assistant', sans-serif;
    color: var(--pnuma-white);
    background: var(--pnuma-gradient);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.dash-register-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.dash-avatars {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 8px;
}
.dash-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--pnuma-gradient);
    border: 2px solid var(--pnuma-white);
    margin-left: -8px;
    opacity: 0.7;
}
.dash-avatar:first-child { margin-left: 0; }
.dash-avatar-count {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-right: 12px;
    font-weight: 500;
}

/* ======== SECTION 6: MARKET VALIDATION & TRUST ======== */
.validation-section {
    padding: 120px 60px;
    background-color: var(--pnuma-bg);
}
.validation-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.validation-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--pnuma-dark);
    line-height: 1.15;
    margin-bottom: 60px;
}

/* --- Logo Marquee --- */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}
.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--pnuma-white);
    border: 1px solid var(--pnuma-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.marquee-item span {
    font-family: 'Assistant', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #94A3B8;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.marquee-item:hover span { color: var(--pnuma-navy); }
.marquee-item:hover { border-color: rgba(26, 46, 68, 0.2); box-shadow: var(--shadow-md); }

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: right;
}
.testimonial-card {
    background: var(--pnuma-white);
    border: 1px solid var(--pnuma-border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-offset { transform: translateY(24px); }
.testimonial-offset:hover { transform: translateY(20px); }
.testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pnuma-gradient);
    flex-shrink: 0;
    opacity: 0.6;
}
.testimonial-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pnuma-dark);
}
.testimonial-role {
    display: block;
    font-size: 0.75rem;
    color: #94A3B8;
    font-weight: 500;
}

/* ======== SECTION 7: IMPACT ======== */
.impact-section {
    padding: 140px 60px;
    background-color: var(--pnuma-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.impact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.impact-quote-mark {
    position: absolute;
    top: -40px;
    right: 50%;
    transform: translateX(50%);
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-size: 180px;
    line-height: 1;
    color: var(--pnuma-dark);
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}
.impact-quote {
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-size: 2.2rem;
    line-height: 1.5;
    color: var(--pnuma-dark);
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}
.impact-attribution {
    font-family: 'Assistant', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pnuma-slate);
    font-weight: 600;
}

/* ======== SECTION 8: TEAM & GOALS ======== */
.team-section {
    position: relative;
    padding: 120px 60px;
    background-color: var(--pnuma-dark);
    color: var(--pnuma-white);
    text-align: center;
    overflow: hidden;
}
.team-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(107, 139, 164, 0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    pointer-events: none;
}
.team-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.team-label {
    display: inline-block;
    font-family: 'Assistant', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pnuma-slate);
    font-weight: 700;
    margin-bottom: 40px;
}
.founder-spotlight { margin-bottom: 40px; }
.founder-image-frame {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(107, 139, 164, 0.3);
    box-shadow: 0 0 40px rgba(107, 139, 164, 0.15);
}
.founder-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.founder-name {
    font-size: 1.3rem;
    color: var(--pnuma-white);
    margin-bottom: 4px;
}
.founder-role {
    font-size: 0.85rem;
    color: var(--pnuma-slate);
    font-weight: 500;
}
.team-heading {
    font-size: 3.2rem;
    color: var(--pnuma-white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.team-accent {
    background: linear-gradient(135deg, #6B8BA4, #a8c4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.team-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.team-cta-row { margin-bottom: 28px; }
.team-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #6B8BA4, #a8c4d8);
    color: var(--pnuma-dark);
    font-family: 'Assistant', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(107, 139, 164, 0.25);
}
.team-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(107, 139, 164, 0.4);
}
.team-btn-whatsapp:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--pnuma-dark), 0 0 0 4px var(--pnuma-slate);
}
.team-links-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.team-link-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    text-decoration: none;
}
.team-link-item:hover { color: var(--pnuma-slate); }
.team-link-item svg { flex-shrink: 0; }
.team-link-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

/* ======== FOOTER ======== */
.pnuma-footer-section {
    background-color: var(--pnuma-dark);
    color: var(--pnuma-white);
    direction: rtl;
    padding: 80px 40px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    align-items: start;
}
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}
.footer-col h4 {
    color: var(--pnuma-slate);
    font-family: 'Assistant', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    filter: brightness(10);
}
.footer-desc {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    max-width: 280px;
    font-size: 0.85rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; width: 100%; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.85rem;
    display: block;
}
.footer-links a:hover { color: var(--pnuma-slate); padding-right: 5px; }
.footer-contact-item { margin-bottom: 16px; font-style: normal; }
.footer-contact-label {
    display: block;
    font-family: 'Assistant', sans-serif;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-contact-value {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-contact-value:hover { color: var(--pnuma-slate); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
    font-size: 0.78rem;
}
.footer-bottom-links a:hover { color: var(--pnuma-white); }

/* ======== KEYFRAMES ======== */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes dashboardBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ======== RESPONSIVE (MOBILE - 768px) ======== */
@media (max-width: 768px) {
    .nexus-header { padding: 15px 20px; }
    .header-logo img { height: 32px; }
    .menu-text { display: none; }
    .nav-link { font-size: 2rem; }
    .menu-footer { flex-direction: column; gap: 15px; text-align: center; bottom: 30px; }

    .hero-section { padding: 100px 24px 60px; min-height: 85vh; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta-wrapper { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { justify-content: center; }

    .deal-section { padding: 80px 24px; }
    .deal-grid { grid-template-columns: 1fr; gap: 50px; }
    .deal-heading { font-size: 2.2rem; }

    .market-section { padding: 80px 24px; }
    .market-title { font-size: 2.4rem; }
    .pillars-grid { grid-template-columns: 1fr; gap: 16px; }

    .values-section { padding: 80px 24px; }
    .values-title { font-size: 2.4rem; margin-bottom: 40px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card:nth-child(1),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4) { grid-column: 1; grid-row: auto; display: block; }
    .bento-card:nth-child(4) .bento-icon { margin-bottom: 20px; }

    .dashboard-section { padding: 80px 24px; }
    .dashboard-title { font-size: 2.4rem; }
    .dashboard-mockup { grid-template-columns: 1fr; }
    .dash-sidebar { display: none; }
    .dash-cards { grid-template-columns: 1fr; }
    .dashboard-frame { animation: none; }

    .validation-section { padding: 80px 24px; }
    .validation-title { font-size: 2.4rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-offset { transform: none; }
    .testimonial-offset:hover { transform: translateY(-4px); }

    .impact-section { padding: 80px 24px; }
    .impact-quote { font-size: 1.6rem; }
    .impact-quote-mark { font-size: 120px; }

    .team-section { padding: 80px 24px; }
    .team-heading { font-size: 2.4rem; }
    .team-btn-whatsapp { padding: 16px 32px; font-size: 0.95rem; }
    .team-links-row { flex-direction: column; gap: 14px; }
    .team-link-divider { display: none; }

    .pnuma-footer-section { padding: 60px 20px 20px 20px; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-col { align-items: center; text-align: center; }
    .footer-desc { margin: 0 auto; }
    .footer-links a:hover { padding-right: 0; }
    .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ======== RESPONSIVE (TABLET - 1024px) ======== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section { padding: 120px 40px 80px; }
    .hero-title { font-size: 4rem; }

    .deal-section { padding: 100px 40px; }
    .market-section { padding: 100px 40px; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }

    .values-section { padding: 100px 40px; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card:nth-child(4) { grid-column: 1 / span 2; }

    .dashboard-section { padding: 100px 40px; }
    .validation-section { padding: 100px 40px; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card:last-child { grid-column: 1 / span 2; max-width: 400px; margin: 0 auto; }

    .impact-section { padding: 100px 40px; }
    .team-section { padding: 100px 40px; }
    .team-heading { font-size: 2.8rem; }

    .footer-container { grid-template-columns: 1fr 1fr; gap: 50px; }
    .footer-col:first-child { grid-column: 1 / span 2; }
}
