:root {
    --csf-blue: #0047FF;
    --csf-neon: #CCFF00;
    --csf-white: #ffffff;
    --csf-glass: rgba(255, 255, 255, 0.15);
}

.csf-hero-section {
    position: relative;
    background-color: var(--csf-blue);
    min-height: 85vh;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Blueprint Grid Background */
.csf-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.csf-huge-bg-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 12vw;
    font-weight: 900;
    color: var(--csf-white);
    line-height: 0.9;
    top: 50px;
    margin: 0;
    z-index: 2;
    pointer-events: none;
}

.csf-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Floating Cards */
.csf-hero-top {
    height: 450px;
    position: relative;
}

.csf-float-card {
    position: absolute;
    background: var(--csf-glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 20px;
    border-radius: 24px;
    width: 180px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.csf-card-1 { top: 10%; right: 15%; transform: rotate(5deg); }
.csf-card-2 { bottom: 10%; left: 20%; transform: rotate(-8deg); }

.csf-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-bottom: 12px;
}

.csf-avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: #333; /* Placeholder for NFT */
    border: 2px solid var(--csf-neon);
}

.csf-avatar-pfp1 { background: linear-gradient(45deg, #ff00ff, #00ffff); }
.csf-avatar-pfp2 { background: linear-gradient(45deg, #ff9900, #ff0055); }

.csf-eth-name { color: white; font-weight: bold; margin: 5px 0; font-size: 14px; }
.csf-points { color: rgba(255,255,255,0.7); font-size: 10px; text-transform: uppercase; }

/* Rotating Badge */
.csf-badge-rotating {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 120px;
    height: 120px;
    background: var(--csf-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
}

.csf-cta-row {
    position: absolute;
    left: 50%;
    bottom: -50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: min(900px, 100%);
    padding: 0 12px;
}

.csf-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.csf-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.csf-cta-btn--outline {
    background: rgba(0, 0, 0, 0.14);
}

.csf-cta-btn--whatsapp {
    background: var(--csf-neon);
    color: #071b00;
    border-color: rgba(204, 255, 0, 0.7);
    box-shadow: 0 16px 34px rgba(204, 255, 0, 0.28);
    animation: csfPulse 2.2s ease-in-out infinite;
}

.csf-cta-btn--whatsapp:hover {
    box-shadow: 0 18px 40px rgba(204, 255, 0, 0.34);
}

@keyframes csfPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}

@media (max-width: 768px) {
    .csf-huge-bg-text { font-size: 18vw; }
    .csf-cta-row { bottom: 18px; }
    .csf-cta-btn { height: 44px; padding: 0 16px; }
}


:root {
    --cs-blue: #0047FF;
    --cs-neon: #CCFF00;
    --cs-bg-light: #F6F6F6;
    --cs-white: #FFFFFF;
}

.cs-info-wrapper {
    background-color: var(--cs-blue); /* Container sits on blue */
    /* padding-top: 50px; */
}

.cs-info-container {
    background-color: var(--cs-white);
    border-radius: 60px 60px 0 0;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.cs-feature-box {
    background-color: var(--cs-bg-light);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs-title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
}

.cs-subtitle {
    font-size: 13px;
    color: #555;
    margin-bottom: 40px;
}

/* Card 1 Visuals */
.cs-visual-area {
    width: 100%;
    position: relative;
    margin-top: auto;
}

.cs-user-tag {
    background: var(--cs-blue);
    color: white;
    padding: 10px 15px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cs-mini-avatar {
    width: 30px;
    height: 30px;
    background: #e0e0e0;
    border-radius: 50%;
    border: 2px solid var(--cs-neon);
}

.cs-tag-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cs-tag-name { font-size: 12px; font-weight: bold; }
.cs-tag-sub { font-size: 8px; opacity: 0.7; }

.cs-bubble-neon {
    background: var(--cs-neon);
    color: black;
    font-weight: 900;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 20px 20px 20px 0;
    position: absolute;
    right: 0;
    top: -10px;
    box-shadow: 0 5px 15px rgba(204, 255, 0, 0.3);
}

/* Card 2 Visuals */
.cs-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-long-pill-blue {
    background: var(--cs-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    gap: 15px;
}

.cs-text-dim { opacity: 0.6; font-size: 14px; }

.cs-circle-icon-neon {
    background: var(--cs-neon);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -15px;
    border: 4px solid var(--cs-bg-light);
    transform: rotate(45deg);
}

/* Card 3 Visuals */
.cs-big-speech-bubble {
    background: var(--cs-neon);
    border-radius: 40px;
    padding: 20px 30px;
    position: relative;
}

.cs-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cs-amount {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
}

.cs-bubble-tail {
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background: var(--cs-neon);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Arrows between cards */
.cs-arrow {
    position: absolute;
    color: #000;
    z-index: 5;
}

.cs-arrow-1 { top: 50%; right: -35px; transform: rotate(10deg); }
.cs-arrow-2 { top: 55%; right: -35px; transform: rotate(-5deg); }

@media (max-width: 992px) {
    .cs-info-container { 
        grid-template-columns: 1fr; 
        border-radius: 40px 40px 0 0;
    }
    .cs-arrow { display: none; }
}

:root {
    --pc-black: #000000;
    --pc-grey-text: #666666;
    --pc-bg-card: #F9F9F9;
    --pc-badge-bg: #F0F2F5;
    --pc-accent-blue: #3B82F6;
    --pc-font: 'Inter', system-ui, -apple-system, sans-serif;
}

.pc-hero-wrapper {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: var(--pc-font);
}

.pc-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.pc-hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.pc-hero-text {
    flex: 1;
    max-width: 500px;
}

.pc-badge {
    background: var(--pc-badge-bg);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.pc-main-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--pc-black);
    margin-bottom: 24px;
    position: relative;
}

.pc-butterfly {
    font-size: 32px;
    vertical-align: middle;
    margin-left: 10px;
}

.pc-main-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--pc-grey-text);
    margin-bottom: 32px;
}

.pc-btn-primary {
    display: inline-block;
    background: var(--pc-black);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.pc-btn-primary:hover {
    transform: scale(1.05);
}

/* Illustration Placeholder Styling */
.pc-hero-illustration {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.pc-illustration-container {
    width: 100%;
    height: 400px;
    background: #f0f4f8; /* Temporary bg */
    border-radius: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-placeholder-speech-bubble {
    position: absolute;
    top: 20px;
    right: 40px;
    background: #FFD700;
    padding: 10px 20px;
    border-radius: 20px 20px 20px 0;
    font-weight: bold;
}

/* Grid Section */
.pc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pc-feature-card {
    background: var(--pc-bg-card);
    border-radius: 32px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.pc-feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.pc-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.pc-image-placeholder {
    width: 120px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pc-illustration-image {
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    object-fit: contain;
    border-radius: 32px;
    display: block;
}

.pc-bg-blue-soft { background: #e0f2ff; }
.pc-bg-orange-soft { background: #fff2e0; }
.pc-bg-green-soft { background: #e0fff2; }

.pc-card-text {
    font-size: 14px;
    color: var(--pc-grey-text);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .pc-hero-main { flex-direction: column; text-align: center; }
    .pc-features-grid { grid-template-columns: 1fr; }
    .pc-main-title { font-size: 40px; }
}


:root {
    --pp-blue-bg: #EDF3FF;
    --pp-blue-primary: #007BFF;
    --pp-text-dark: #1A1A1A;
    --pp-text-grey: #667085;
    --pp-white: #FFFFFF;
}

.pp-faq-section {
    padding: 60px 20px;
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #fff;
}

.pp-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--pp-blue-bg);
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Left Column */
.pp-faq-badge {
    background: var(--pp-white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pp-faq-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--pp-text-dark);
    line-height: 1.1;
    margin-bottom: 30px;
}

.pp-faq-illustration-box {
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
    position: relative;
}

.pp-faq-placeholder-svg {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    border: 2px dashed rgba(0,0,0,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pp-text-grey);
}

.pp-faq-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

.pp-faq-footer-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--pp-text-grey);
    max-width: 400px;
}

/* Accordion Column */
.pp-faq-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pp-faq-item {
    background: var(--pp-white);
    border-radius: 24px;
    padding: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.pp-faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pp-faq-question {
    font-weight: 700;
    font-size: 16px;
    color: var(--pp-text-dark);
}

.pp-faq-icon {
    width: 32px;
    height: 32px;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Icon Arrow Down */
.pp-faq-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

/* Active State Styles */
.pp-faq-item.pp-active {
    background-color: var(--pp-blue-primary);
    padding: 8px;
}

.pp-faq-item.pp-active .pp-faq-question {
    color: var(--pp-white);
}

.pp-faq-item.pp-active .pp-faq-icon {
    background: var(--pp-white);
}

.pp-faq-item.pp-active .pp-faq-icon::after {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

.pp-faq-body {
    max-height: 0;
    transition: max-height 0.4s ease;
}

.pp-faq-item.pp-active .pp-faq-body {
    max-height: 500px;
}

.pp-faq-inner-content {
    background: var(--pp-white);
    margin: 0 8px 12px 8px;
    padding: 24px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--pp-text-grey);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .pp-faq-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    .pp-faq-title { font-size: 32px; }
}


