/* ============================================
   Public Website — Landing Page Styles
   ============================================ */

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-22px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatA {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    38% {
        transform: translate(24px, -20px) scale(1.06);
    }

    68% {
        transform: translate(-14px, 12px) scale(0.96);
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-22px, 16px) scale(1.04);
    }

    66% {
        transform: translate(18px, -10px) scale(0.97);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

@keyframes shimmerMove {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(250%);
    }
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes progressGlow {

    0%,
    100% {
        box-shadow: 0 0 6px rgba(99, 102, 241, 0.6);
    }

    50% {
        box-shadow: 0 0 14px rgba(139, 92, 246, 0.8);
    }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.ws-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
    animation: progressGlow 2s ease infinite;
}

/* ============================================
   SCROLL REVEAL CLASSES
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-up {
    opacity: 0;
    transform: translateY(32px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(36px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: none;
}

/* Reset body for website */
body.website-body {
    background: #fff;
    font-family: 'Plus Jakarta Sans', 'Hind Siliguri', -apple-system, sans-serif;
}

/* ============================================
   ENHANCED TRANSITIONS — global
   ============================================ */
.quote-card,
.principle-card,
.why-card,
.member-card,
.how-step,
.pub-inv-card,
.contact-card {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s ease,
        border-color 0.32s ease;
}

.quote-card:hover {
    box-shadow: 0 24px 64px rgba(99, 102, 241, 0.18), 0 0 0 1px rgba(99, 102, 241, 0.1);
}

.principle-card:hover {
    box-shadow: 0 14px 44px rgba(99, 102, 241, 0.14);
}

.why-card:hover {
    box-shadow: 0 18px 52px rgba(99, 102, 241, 0.14);
}

.pub-inv-card:hover {
    box-shadow: 0 14px 44px rgba(99, 102, 241, 0.13);
}

.contact-card:hover {
    box-shadow: 0 10px 32px rgba(6, 182, 212, 0.15);
}

.member-card:hover {
    box-shadow: 0 22px 56px rgba(99, 102, 241, 0.18);
}

.how-step:hover {
    box-shadow: 0 22px 56px rgba(99, 102, 241, 0.14);
}

/* Button shimmer sweep on hover */
.hero-btn-primary,
.cta-btn-primary,
.btn {
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::after,
.cta-btn-primary::after,
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.hero-btn-primary:hover::after,
.cta-btn-primary:hover::after,
.btn:hover::after {
    animation: shimmerMove 0.5s ease forwards;
}

/* Fin card shimmer */
.fin-card {
    position: relative;
    overflow: hidden;
}

.fin-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.fin-card:hover::after {
    animation: shimmerMove 0.6s ease forwards;
}

/* Nav brand smooth */
.nav-brand {
    transition: opacity 0.2s ease;
}

.site-nav.scrolled .nav-brand:hover {
    opacity: 0.8;
}

/* ============================================
   SITE NAV
   ============================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    transition: background 0.3s, box-shadow 0.3s;
    padding: 0;
}

.site-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(99, 102, 241, 0.12);
}

.site-nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-nav .nav-brand {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.3px;
    font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav.scrolled .nav-brand {
    color: #4f46e5;
}

.site-nav .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}

.nav-btn-login:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.8);
}

.site-nav.scrolled .nav-btn-login {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
    box-shadow: 0 3px 12px rgba(99, 102, 241, 0.3);
}

.site-nav.scrolled .nav-btn-login:hover {
    background: #4f46e5;
    border-color: #4f46e5;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 20%, #6366f1 45%, #8b5cf6 68%, #0e7490 88%, #06b6d4 100%);
    background-size: 300% 300%;
    animation: gradientShift 18s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-blob-mid {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatA 9s ease-in-out infinite;
}

.hero::before {
    animation: floatB 13s ease-in-out infinite;
}

.hero::after {
    animation: floatA 11s ease-in-out infinite 1.5s;
}

/* Animated dot-mesh grid */
.hero-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    animation: meshDrift 22s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes meshDrift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 44px 44px;
    }
}

/* Diagonal shimmer sweep */
.hero-sweep {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg,
            transparent 25%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.07) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 75%);
    background-size: 300% 100%;
    animation: heroSweep 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroSweep {
    0% {
        background-position: 200% 0;
    }

    45% {
        background-position: -100% 0;
    }

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

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

.hp {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: hpFloat linear infinite;
}

.hp1 {
    width: 6px;
    height: 6px;
    left: 8%;
    top: 82%;
    background: rgba(167, 243, 252, 0.75);
    animation-duration: 13s;
    animation-delay: 0s;
}

.hp2 {
    width: 10px;
    height: 10px;
    left: 22%;
    top: 88%;
    background: rgba(255, 255, 255, 0.35);
    animation-duration: 17s;
    animation-delay: 2s;
}

.hp3 {
    width: 4px;
    height: 4px;
    left: 38%;
    top: 76%;
    background: rgba(196, 181, 253, 0.85);
    animation-duration: 10s;
    animation-delay: 4s;
}

.hp4 {
    width: 8px;
    height: 8px;
    left: 58%;
    top: 91%;
    background: rgba(103, 232, 249, 0.55);
    animation-duration: 15s;
    animation-delay: 1s;
}

.hp5 {
    width: 5px;
    height: 5px;
    left: 72%;
    top: 72%;
    background: rgba(255, 255, 255, 0.5);
    animation-duration: 11s;
    animation-delay: 3s;
}

.hp6 {
    width: 12px;
    height: 12px;
    left: 84%;
    top: 84%;
    background: rgba(139, 92, 246, 0.45);
    animation-duration: 19s;
    animation-delay: 5s;
}

.hp7 {
    width: 3px;
    height: 3px;
    left: 50%;
    top: 93%;
    background: rgba(255, 255, 255, 0.65);
    animation-duration: 9s;
    animation-delay: 6s;
}

.hp8 {
    width: 7px;
    height: 7px;
    left: 16%;
    top: 65%;
    background: rgba(6, 182, 212, 0.55);
    animation-duration: 14s;
    animation-delay: 0.5s;
}

@keyframes hpFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    85% {
        opacity: 0.65;
    }

    100% {
        transform: translateY(-85vh) translateX(25px) scale(1.15);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #67e8f9;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 7vw, 78px);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 22px;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.22), 0 0 80px rgba(139, 92, 246, 0.45), 0 0 140px rgba(6, 182, 212, 0.25);
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both, titleGlow 5s ease-in-out infinite;
    animation-delay: 0.35s, 1.5s;
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 4px 32px rgba(0, 0, 0, 0.22), 0 0 80px rgba(139, 92, 246, 0.45), 0 0 140px rgba(6, 182, 212, 0.25);
    }

    50% {
        text-shadow: 0 4px 32px rgba(0, 0, 0, 0.22), 0 0 100px rgba(167, 139, 250, 0.65), 0 0 180px rgba(6, 182, 212, 0.40);
    }
}

.hero-tagline {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: #4f46e5;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: -0.2px;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    letter-spacing: -0.2px;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
}

/* Hero stats chips */
.hero-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat-chip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 22px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.hero-stat-chip .chip-val {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.1;
}

.hero-stat-chip .chip-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-top: 3px;
}

/* Hero entrance — staggered */
.hero-eyebrow {
    animation: fadeInDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.15s;
}

.hero-tagline {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.62s;
}

.hero-cta {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.84s;
}

.hero-stat-chip:nth-child(1) {
    animation: fadeInScale 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 1.05s;
}

.hero-stat-chip:nth-child(2) {
    animation: fadeInScale 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 1.18s;
}

.hero-stat-chip:nth-child(3) {
    animation: fadeInScale 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 1.31s;
}

.hero-stat-chip:nth-child(4) {
    animation: fadeInScale 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 1.44s;
}

/* Quote feature animated gradient text */
.quote-feature-text {
    background: linear-gradient(120deg, #fff 20%, #a5f3fc 50%, #c4b5fd 75%, #fff 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

/* CTA animated gradient */
.cta-banner {
    background-size: 220% 220%;
    animation: gradientShift 9s ease infinite;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: bob 2.5s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
}

.hero-scroll svg {
    width: 18px;
    height: 18px;
}

@keyframes bob {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ============================================
   SECTION BASE
   ============================================ */
.ws-section {
    padding: 88px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.ws-section-full {
    padding: 88px 0;
}

.ws-section-full .ws-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-bg-alt {
    background: #f7f6ff;
}

.section-bg-dark {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #6366f1;
    border-radius: 2px;
}

.section-title {
    font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.section-title--white {
    color: #fff;
}

.section-sub {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    max-width: 580px;
}

.section-sub--white {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text {}

.about-text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-value-card {
    background: #f7f6ff;
    border: 1px solid #e9e4ff;
    border-radius: 14px;
    padding: 18px 20px;
}

.about-value-icon {
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
}

.about-value-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.about-value-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
}

.about-visual {
    position: relative;
}

.about-visual-card {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.35);
}

.about-visual-card .big-num {
    font-size: 68px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}

.about-visual-card .big-label {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 8px;
}

.about-visual-orbs {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

/* ============================================
   MEMBERS SECTION
   ============================================ */
.members-header {
    text-align: center;
    margin-bottom: 56px;
}

.members-header .section-sub {
    margin: 0 auto;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
}

.member-card {
    background: #fff;
    border: 1px solid #e9e4ff;
    border-radius: 18px;
    padding: 28px 20px 22px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mc, #6366f1), transparent);
}

.member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.14);
    border-color: #c4b5fd;
}

.member-photo-wrap {
    margin: 0 auto 16px;
    width: 90px;
    height: 90px;
    position: relative;
}

.member-photo-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(var(--mc, #6366f1) 0deg, rgba(255, 255, 255, 0) 270deg);
    opacity: 0.5;
}

.member-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    display: block;
}

.member-initials {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.member-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.35;
}

.member-shares-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #eef2ff;
    color: #4338ca;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.member-since {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* No members placeholder */
.no-members {
    text-align: center;
    padding: 60px 24px;
    color: #94a3b8;
    font-size: 15px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.2s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.contact-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.contact-label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    word-break: break-all;
}

.contact-value a {
    color: #a5f3fc;
    text-decoration: none;
}

.contact-value a:hover {
    color: #67e8f9;
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
    background: #0f0e1a;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: 32px 24px;
    font-size: 13.5px;
}

.site-footer .footer-name {
    font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.site-footer .footer-links a:hover {
    color: #a5f3fc;
}

.site-footer .footer-copy {
    margin-top: 8px;
    opacity: 0.4;
    font-size: 12px;
}

.footer-credit-wrap {
    margin-top: 5px;
    display: flex;
    justify-content: center;
}

.footer-credit-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 7px;
    border-radius: 100px;

    border: 1px solid rgba(139, 92, 246, 0.45);
    font-size: 10.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.25), 0 2px 12px rgba(0, 0, 0, 0.4);
}

.footer-credit-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: creditShine 4s ease-in-out infinite;
}

@keyframes creditShine {
    0% {
        left: -80%;
    }

    40% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

.footer-credit-heart {
    color: #f43f5e;
    font-size: 15px;
    animation: heartBeat 1.6s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.25);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.15);
    }

    56% {
        transform: scale(1);
    }
}

.footer-credit-name {
    font-weight: 800;
    font-size: 12.5px;
    background: linear-gradient(120deg, #a5f3fc, #c4b5fd, #f9a8d4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameShimmer 3s linear infinite;
}

@keyframes nameShimmer {
    0% {
        background-position: 0% center;
    }

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

/* ============================================
   NOTICE TICKER
   ============================================ */
.ws-ticker {
    background: linear-gradient(90deg, #312e81, #4f46e5, #7c3aed, #0891b2);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 0;
    overflow: hidden;
    position: relative;
    font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
}

.ws-ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: rgba(0, 0, 0, 0.25);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    white-space: nowrap;
    gap: 8px;
}

.ws-ticker-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
    border-left: 12px solid rgba(0, 0, 0, 0.25);
}

.ws-ticker-dot {
    width: 7px;
    height: 7px;
    background: #67e8f9;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

.ws-ticker-scroll {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    padding-left: 140px;
}

.ws-ticker:hover .ws-ticker-scroll {
    animation-play-state: paused;
}

.ws-ticker-scroll span {
    margin-right: 80px;
}

.ws-ticker-scroll .sep {
    opacity: 0.4;
    margin-right: 80px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   MOTIVATIONAL QUOTES
   ============================================ */
.quotes-section {
    background: linear-gradient(160deg, #faf9ff 0%, #f0eeff 100%);
    border-top: 1px solid #e9e4ff;
    border-bottom: 1px solid #e9e4ff;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.quote-card {
    background: #fff;
    border: 1px solid #e9e4ff;
    border-radius: 20px;
    padding: 32px 26px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.quote-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
}

.quote-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 18px;
    font-size: 100px;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--qc, #6366f1);
    opacity: 0.12;
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
}

.quote-card--primary {
    border-top: 4px solid #6366f1;
    --qc: #6366f1;
}

.quote-card--purple {
    border-top: 4px solid #8b5cf6;
    --qc: #8b5cf6;
}

.quote-card--teal {
    border-top: 4px solid #06b6d4;
    --qc: #06b6d4;
}

.quote-card--green {
    border-top: 4px solid #10b981;
    --qc: #10b981;
}

.quote-card--amber {
    border-top: 4px solid #f59e0b;
    --qc: #f59e0b;
}

.quote-card--rose {
    border-top: 4px solid #f43f5e;
    --qc: #f43f5e;
}

.quote-text {
    font-family: 'Hind Siliguri', Georgia, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.65;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.quote-attr {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--qc, #6366f1);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-attr::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--qc, #6366f1);
    border-radius: 2px;
}

/* Full-width feature quote */
.quote-feature {
    background: linear-gradient(135deg, #312e81 0%, #6366f1 50%, #0891b2 100%);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.quote-feature::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 180px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    pointer-events: none;
}

.quote-feature-text {
    font-family: 'Hind Siliguri', Georgia, sans-serif;
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 700;
    color: #fff;
    line-height: 1.55;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.quote-feature-attr {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ============================================
   ORG IDENTITY / FOUNDING STORY
   ============================================ */
.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.identity-text p {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 16px;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 16px;
}

.identity-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.identity-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    color: #3730a3;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Hind Siliguri', sans-serif;
}

.identity-visual {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 24px;
    padding: 40px 32px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.35);
    position: relative;
    overflow: hidden;
}

.identity-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.identity-stat {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.identity-stat:last-child {
    border-bottom: none;
}

.identity-stat-val {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.identity-stat-label {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

/* ============================================
   PRINCIPLES / নীতিমালা
   ============================================ */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.principle-card {
    background: #fff;
    border: 1.5px solid #e9e4ff;
    border-radius: 18px;
    padding: 28px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.principle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(99, 102, 241, 0.1);
    border-color: #a5b4fc;
}

.principle-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.principle-val {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 5px;
    font-family: 'Plus Jakarta Sans', 'Hind Siliguri', sans-serif;
}

.principle-label {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    font-weight: 500;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-steps {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    align-items: center;
    gap: 0;
    margin-top: 56px;
}

.how-step {
    background: #fff;
    border: 1px solid #e9e4ff;
    border-radius: 20px;
    padding: 36px 28px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
}

.how-step-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #6366f1;
    background: #eef2ff;
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.how-step-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.how-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.how-step p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.how-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5fd;
    font-size: 28px;
    flex-shrink: 0;
}

/* step highlight variants */
.how-step:nth-child(1) {
    border-top: 4px solid #6366f1;
}

.how-step:nth-child(3) {
    border-top: 4px solid #8b5cf6;
}

.how-step:nth-child(5) {
    border-top: 4px solid #06b6d4;
}

.how-step:nth-child(3) .how-step-num {
    background: #f5f3ff;
    color: #7c3aed;
}

.how-step:nth-child(5) .how-step-num {
    background: #ecfeff;
    color: #0891b2;
}

/* ============================================
   FINANCIAL HIGHLIGHTS
   ============================================ */
.fin-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #1e3a5f 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.fin-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.fin-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.fin-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.fin-header {
    text-align: center;
    margin-bottom: 56px;
}

.fin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fin-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s;
}

.fin-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.fin-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.fin-val {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    display: block;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 46px;
}

.fin-label {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

/* ============================================
   WHY JOIN US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: #fff;
    border: 1px solid #e9e4ff;
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
    border-color: #c4b5fd;
}

.why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.why-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.why-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   ACTIVE INVESTMENTS (public)
   ============================================ */
.pub-inv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.pub-inv-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #6366f1;
    border-radius: 14px;
    padding: 24px 22px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.pub-inv-card:hover {
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.pub-inv-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.pub-inv-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    animation: pulse-dot 2s ease-in-out infinite;
}

.pub-inv-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.pub-inv-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 14px;
}

.pub-inv-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.pub-inv-amount {
    font-size: 18px;
    font-weight: 800;
    color: #4f46e5;
}

/* ============================================
   FAQ
   ============================================ */
.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
}

.faq-sticky {
    position: sticky;
    top: 90px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
    border-color: #a5b4fc;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    user-select: none;
    transition: color 0.15s;
}

.faq-item.open .faq-question {
    color: #4f46e5;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-chevron {
    background: #eef2ff;
    transform: rotate(180deg);
}

.faq-chevron svg {
    width: 12px;
    height: 12px;
    color: #6366f1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    transition: max-height 0.45s ease-in-out;
}

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.75;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateX(-50%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: #fff;
    color: #4f46e5;
    border-radius: 100px;
    font-size: 15.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    font-size: 15.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

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

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

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

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
    }

    .about-values {
        grid-template-columns: 1fr 1fr;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .how-step-arrow {
        transform: rotate(90deg);
        margin: -8px auto;
    }

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

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq-sticky {
        position: static;
    }

    .identity-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .identity-visual {
        order: -1;
    }

    .quotes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 20px 70px;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-stat-chip {
        padding: 8px 16px;
    }

    .hero-stat-chip .chip-val {
        font-size: 20px;
    }

    .ws-section {
        padding: 60px 20px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .member-card {
        padding: 22px 14px 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .fin-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .fin-val {
        font-size: 28px;
    }

    .fin-section {
        padding: 60px 0;
    }

    .pub-inv-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 52px 20px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .quote-feature {
        padding: 32px 22px;
    }

    .identity-chips {
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .members-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        justify-content: center;
    }

    .fin-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        justify-content: center;
    }
}