/* Base Styles */
.cp-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at center, #1e0044 0%, #0a0118 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Central Glowing Effect */
.cp-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.cp-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Typography */
.cp-content {
    position: relative;
    z-index: 10;
}

.cp-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.cp-subtitle {
    font-size: 1.2rem;
    color: #d1d1d1;
    margin-bottom: 40px;
}

/* Buttons */
.cp-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.cp-btn {
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cp-btn-outline {
    border: 2px solid #8247E5;
    color: #fff;
}

.cp-btn-solid {
    background: linear-gradient(90deg, #f9d423 0%, #ff4e50 100%);
    color: #000;
}

.cp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Visual Dashboards */
.cp-visual-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cp-dashboard {
    position: absolute;
    width: 523px;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.cp-dashboard img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cp-dash-left {
    left: -5%;
    top: 10%;
    transform: perspective(1000px) rotateY(25deg);
}

.cp-dash-right {
    right: -5%;
    top: 5%;
    transform: perspective(1000px) rotateY(-25deg);
}

/* Floating Coins */
.cp-coin {
    position: absolute;
    z-index: 5;
    animation: cp-float 4s ease-in-out infinite;
}

.cp-coin-1 { top: -7%; left: 20%; animation-delay: 0s;     width: 134px; }
.cp-coin-2 { top: -10%; right: 11%; animation-delay: 1s;     width: 134px;}
.cp-coin-3 { bottom: 25%; left: 11%; animation-delay: 0.5s;     width: 134px;}
.cp-coin-4 { bottom: 20%; right: 11%; animation-delay: 1.5s;     width: 134px;}

/* Bottom Elements */
.cp-bottom-chart {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Animations */
@keyframes cp-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .cp-dashboard { width: 300px; }
    .cp-dash-left { left: 0; }
    .cp-dash-right { right: 0; }
}

@media (max-width: 768px) {
    .cp-dashboard { display: none; }
    .cp-coin { display: none; }
    .cp-title { font-size: 2.5rem; }
}

/* Benefits Section Styles */
.sb-benefits-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #0a0118; /* Deep dark base */
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 100px 20px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Background Light Beam Effect */
.sb-bg-beam {
    position: absolute;
    bottom: -10%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: linear-gradient(0deg, rgba(195, 103, 255, 0.4) 0%, rgba(130, 71, 229, 0) 70%);
    filter: blur(100px);
    transform: perspective(1000px) rotateX(45deg);
    pointer-events: none;
    z-index: 1;
}

/* Layout Container */
.sb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Left Content Styles */
.sb-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
}

.sb-main-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.sb-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 450px;
}

/* Card Grid Styles */
.sb-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Glassmorphism Card */
.sb-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.sb-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.sb-icon-wrapper {
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
}

.sb-icon-wrapper img {
    width: 100%;
    height: auto;
}

.sb-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sb-card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 20px;
}

.sb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.sb-link:hover {
    color: #ffffff;
}

.sb-arrow {
    font-size: 1.2rem;
    line-height: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .sb-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sb-description {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sb-cards-grid {
        grid-template-columns: 1fr;
    }
    .sb-card {
        padding: 30px;
    }
}


/* FAQ Section Base Styles */
.fq-faq-section {
    background-color: #060111; /* Very dark blue/black */
    color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.fq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side Content */
.fq-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
}

.fq-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
}

.fq-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    max-width: 350px;
    margin-bottom: 60px;
}

.fq-illustration img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.5));
}

/* Accordion Styles */
.fq-accordion-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.fq-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fq-question {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

/* Custom CSS Toggle Button (+ / -) */
.fq-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    flex-shrink: 0;
    transition: 0.3s;
}

.fq-toggle-btn::before, .fq-toggle-btn::after {
    content: '';
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

/* Horizontal line */
.fq-toggle-btn::before { width: 14px; height: 2px; }
/* Vertical line */
.fq-toggle-btn::after { width: 2px; height: 14px; }

/* Active States */
.fq-item.fq-active {
    background: rgba(255, 255, 255, 0.04);
}

.fq-item.fq-active .fq-toggle-btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0; /* Hides vertical line to make it a minus */
}

/* Answer Body */
.fq-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.fq-item.fq-active .fq-item-body {
    max-height: 200px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.fq-answer {
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    padding-left: 64px; /* Align with text, not icon */
}

/* Responsive */
@media (max-width: 1024px) {
    .fq-container { grid-template-columns: 1fr; gap: 50px; }
    .fq-header-side { text-align: center; }
    .fq-subtitle { margin: 0 auto 40px auto; }
}

@media (max-width: 768px) {
    .fq-answer { padding-left: 0; }
    .fq-item { padding: 20px; }
}

/* ===== Shared ===== */
.pm-container,
.ts-container,
.wi-container,
.pc-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

.pm-badge,
.ts-badge,
.wi-badge,
.pc-badge,
.cp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #d9c6ff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    margin-bottom: 16px;
}

.pm-title,
.ts-title,
.wi-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}

.pm-text,
.ts-text,
.wi-text {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== Hero Update ===== */
.cp-hero-section {
    position: relative;
    padding: 110px 20px 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(142, 91, 255, 0.24), transparent 35%),
        linear-gradient(135deg, #0b0618 0%, #1a0b2e 38%, #251044 65%, #0b0618 100%);
}

.cp-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cp-content {
    max-width: 860px;
    margin: 0 auto 30px;
}

.cp-title {
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
}

.cp-title span {
    display: block;
    background: linear-gradient(90deg, #ffffff, #dac8ff, #8e5bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cp-subtitle {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.74);
    font-size: 1.08rem;
    line-height: 1.8;
}

.cp-btn-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cp-btn-outline {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.cp-btn-solid {
    color: #fff;
    background: linear-gradient(135deg, #8e5bff, #6b38f5);
    box-shadow: 0 18px 40px rgba(107, 56, 245, 0.35);
}

.cp-btn:hover {
    transform: translateY(-3px);
}

.cp-hero-visual {
    margin-top: 24px;
}

.cp-hero-main-img {
    max-width: 1140px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 35px 70px rgba(0,0,0,0.38));
}

/* ===== Highlights ===== */
.pm-highlights-section {
    padding: 90px 0 30px;
    background: linear-gradient(180deg, #0c0718 0%, #12091f 100%);
}

.pm-section-head {
    max-width: 850px;
    margin: 0 auto 50px;
}

.pm-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pm-highlight-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px 22px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pm-highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(142,91,255,0.34);
}

.pm-icon-box {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pm-icon-box img {
    max-width: 100%;
    height: auto;
}

.pm-highlight-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.pm-highlight-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    font-size: 0.96rem;
}

/* ===== Tech Stack ===== */
.ts-tech-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #12091f 0%, #0b0618 100%);
}

.ts-head {
    max-width: 820px;
    margin: 0 auto 46px;
}

.ts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ts-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px 24px;
}

.ts-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 18px;
}

.ts-card ul {
    margin: 0;
    padding-left: 18px;
}

.ts-card li {
    color: rgba(255,255,255,0.72);
    line-height: 2;
}

/* ===== Why integrate ===== */
.wi-why-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #0b0618 0%, #140a24 100%);
}

.wi-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 34px;
    align-items: start;
}

.wi-right {
    display: grid;
    gap: 18px;
}

.wi-point {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 24px;
}

.wi-point h3 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 1.12rem;
}

.wi-point p {
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin: 0;
}

/* ===== CTA ===== */
.pc-cta-section {
    padding: 90px 0 110px;
    background: linear-gradient(180deg, #140a24 0%, #0b0618 100%);
}

.pc-cta-box {
    text-align: center;
    padding: 50px 28px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top center, rgba(142,91,255,0.18), transparent 40%),
        rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.pc-cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
}

.pc-cta-box p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.pc-btn-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.pc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pc-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #8e5bff, #6b38f5);
}

.pc-btn-secondary {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.pc-btn:hover {
    transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .pm-highlight-grid,
    .ts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .cp-hero-section,
    .pm-highlights-section,
    .ts-tech-section,
    .wi-why-section,
    .pc-cta-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .pm-highlight-grid,
    .ts-grid {
        grid-template-columns: 1fr;
    }

    .cp-btn-group,
    .pc-btn-group {
        flex-direction: column;
    }

    .cp-btn,
    .pc-btn {
        width: 100%;
    }
}