:root {
    --bc-dark: #2D331D;
    --bc-white: #FFFFFF;
    --bc-green: #4ADE80;
    --bc-text-grey: #555555;
}

.bc-hero-section {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bc-white);
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.bc-content-wrapper {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bc-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--bc-dark);
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.bc-sub-desc {
    font-size: 0.85rem;
    color: var(--bc-text-grey);
    line-height: 1.6;
    max-width: 700px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Button Container */
.bc-btn-group {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

/* Dark Button with 3D shadow */
.bc-btn-dark {
    background-color: var(--bc-dark);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 0px #1a1e11;
    transition: transform 0.1s;
}

.bc-btn-dark:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0px #1a1e11;
}

.bc-btn-whatsapp {
    background-color: #25D366;
    box-shadow: 0 4px 0px #168a41;
}

.bc-btn-whatsapp:active {
    box-shadow: 0 2px 0px #168a41;
}

/* Pulsing Green Dot */
.bc-live-dot {
    width: 10px;
    height: 10px;
    background-color: var(--bc-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--bc-green);
    animation: bc-pulse 1.5s infinite;
}

/* Outline Button */
.bc-btn-outline {
    background: transparent;
    color: var(--bc-dark);
    border: 2px solid var(--bc-dark);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 0px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.bc-btn-outline:hover {
    background-color: rgba(0,0,0,0.02);
}

/* Illustration Placeholder */
.bc-illustration-container {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.bc-illustration-placeholder {
    width: 100%;
    max-width: 100%;
    height: 450px;
    background: linear-gradient(to top, #f3f4f6, transparent);
    border-radius: 40px 40px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
}

.bc-img-hint {
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes bc-pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bc-main-title { font-size: 2rem; }
    .bc-btn-group { flex-direction: column; width: 100%; padding: 0 20px; }
    .bc-btn-dark, .bc-btn-outline { width: 100%; justify-content: center; }
}

:root {
    --insp-lime: #D7FE51;
    --insp-black: #222222;
    --insp-text-grey: #666666;
    --insp-bg-light: #F5F5F5;
    --insp-white: #FFFFFF;
}

.insp-hero-section {
    padding: 60px 20px;
    background-color: var(--insp-white);
    font-family: 'Inter', -apple-system, sans-serif;
}

.insp-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* TOP ROW */
.insp-top-row {
    display: block;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.insp-header-content {
    flex: 1;
    max-width: 100%;
}

.insp-version-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    width: fit-content;
    padding: 4px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.insp-pill-lime {
    background: var(--insp-lime);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 13px;
}

.insp-pill-text {
    font-size: 13px;
    padding-right: 12px;
    font-weight: 500;
}

.insp-main-title {
    font-size: 4.5rem;
    line-height: 0.95;
    font-weight: 800;
    color: var(--insp-black);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.insp-sub-desc {
    color: var(--insp-text-grey);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.insp-cta-group {
    display: flex;
    gap: 15px;
}

.insp-btn-dark {
    background: var(--insp-black);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.insp-btn-whatsapp {
    background: #25D366;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}

.insp-btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LARGE IMAGE STYLING */
.insp-image-wrapper {
    flex: 1;
    position: relative;
}

.insp-main-placeholder-img {
    background: var(--insp-lime);
    height: 550px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.insp-floating-ui {
    position: absolute;
    top: 10px;
    left: -30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.insp-circle-btn {
    width: 60px;
    height: 60px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.insp-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid white;
    background-color: #ddd;
}

.insp-av-1 { background-color: #ffd700; }
.insp-av-2 { background-color: #87ceeb; }

/* BOTTOM ROW */
.insp-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 30px;
    align-items: stretch;
}

.insp-stats-card {
    background: var(--insp-black);
    color: white;
    padding: 40px;
    border-radius: 40px;
}

.insp-stats-number {
    font-size: 5rem;
    color: var(--insp-lime);
    margin-bottom: 10px;
    font-weight: 800;
}

.insp-small-img-box {
    background: #87ceeb; /* Light blue placeholder */
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insp-info-content {
    padding: 20px 0;
}

.insp-info-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.insp-info-desc {
    color: var(--insp-text-grey);
    margin-bottom: 30px;
    line-height: 1.6;
}

.insp-pill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.insp-tag {
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.insp-img-label {
    opacity: 1;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    object-fit: cover;
    width: 85%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .insp-top-row { flex-direction: column; }
    .insp-bottom-row { grid-template-columns: 1fr; }
    .insp-main-title { font-size: 3rem; }
    .insp-floating-ui { left: 20px; top: 20px; }
}


:root {
    --scf-text: #2D336B;
    --scf-subtext: #7C82A1;
    --scf-white: #ffffff;
}

.scf-features-section {
    padding: 80px 20px;
    background-color: #FAFBFF;
    font-family: 'Inter', system-ui, sans-serif;
}

.scf-container {
    max-width: 1200px;
    margin: 0 auto;
}

.scf-header {
    text-align: center;
    margin-bottom: 60px;
}

.scf-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--scf-text);
    line-height: 1.2;
}

/* Grid Layout */
.scf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-flow: dense;
}

.scf-card {
    background: var(--scf-white);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.scf-span-2 { grid-column: span 2; }
.scf-tall { grid-row: span 2; }

.scf-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--scf-text);
    margin-bottom: 12px;
}

.scf-card-desc {
    font-size: 15px;
    color: var(--scf-subtext);
    line-height: 1.5;
    max-width: 250px;
}

/* Pastel Colors */
.scf-bg-orange { background-color: #FFF9F2; }
.scf-bg-blue { background-color: #F2F7FF; }
.scf-bg-green { background-color: #F2FFF7; }
.scf-bg-purple { background-color: #F9F2FF; }
.scf-bg-pink { background-color: #FFF2F2; }
.scf-bg-yellow { background-color: #FFFDF2; }
.scf-bg-blue-dark { background-color: #F2FAFF; }
.scf-bg-teal { background-color: #F2FFFD; }
.scf-bg-grey { background-color: #F7F8FA; }
.scf-bg-orange-light { background-color: #FFF5F2; }

/* CSS-based Visual Placeholders (Abstract Illustrations) */
.scf-visual {
    position: absolute;
    bottom: 17px;
    right: -10px;
    width: 140px;
    height: 140px;
    opacity: 1;
}

.scf-vis-shop { background: #FFD59E; border-radius: 20px; transform: rotate(15deg); }
.scf-vis-live { background: #A9C9FF; border-radius: 50%; width: 100px; height: 100px; bottom: 20px; right: 20px; }
.scf-vis-video { background: #9DEDC0; width: 80px; height: 140px; border-radius: 12px; right: 40px; }
.scf-vis-affiliate { background: #D6BCFA; clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.scf-vis-group { border: 15px solid #FFBABA; border-radius: 50%; }
.scf-vis-game { background: #FDE68A; border-radius: 50% 0 50% 50%; }
.scf-vis-ai { background: #93C5FD; mask: radial-gradient(circle, transparent 20%, black 21%); }
.scf-vis-chat { background: #99F6E4; border-radius: 40px 40px 5px 40px; }
.scf-vis-feed { border: 10px solid #E5E7EB; border-radius: 15px; width: 120px; }
.scf-vis-token { background: #FCA5A5; border-radius: 50%; width: 60px; height: 60px; bottom: 40px; right: 40px; box-shadow: 20px 0 0 rgba(252,165,165,0.4); }

/* Responsive */
@media (max-width: 992px) {
    .scf-grid { grid-template-columns: repeat(2, 1fr); }
    .scf-span-2 { grid-column: span 1; }
}

@media (max-width: 600px) {
    .scf-grid { grid-template-columns: 1fr; }
    .scf-tall { grid-row: span 1; }
}

:root {
    --str-blue: #163E7A;
    --str-light-grey: #E8EEF2;
    --str-text-dark: #333333;
    --str-white: #ffffff;
}

.str-faq-section {
    padding: 100px 0;
    background:
        radial-gradient(900px 500px at 20% 10%, rgba(22, 62, 122, 0.08), transparent 60%),
        radial-gradient(700px 400px at 70% 0%, rgba(22, 62, 122, 0.05), transparent 60%),
        #f8fafd;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.str-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.str-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 44px;
}

.str-main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--str-text-dark);
}

.str-accent {
    color: var(--str-blue);
}

.str-header-right {
    max-width: 350px;
}

.str-header-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Nav Buttons */
.str-nav-controls {
    display: flex;
    gap: 12px;
}

.str-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.16);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.str-next {
    background: #000;
    color: #fff;
    border-color: #000;
}

.str-nav-btn:hover {
    transform: scale(1.1);
}

/* Slider Track */
.str-faq-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 10px clamp(16px, 8vw, 140px) 40px;
}

.str-faq-track {
    display: flex;
    gap: 26px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    will-change: transform;
}

/* Card Styling */
.str-faq-card {
    min-width: 340px;
    height: 420px;
    background-color: var(--str-light-grey);
    border-radius: 32px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s ease;
    flex-shrink: 0;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.str-card-q {
    font-size: 22px;
    font-weight: 500;
    color: rgba(30, 41, 59, 0.85);
    margin-bottom: 16px;
    transition: color 0.3s;
}

.str-card-a {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Active Card State (Blue) */
.str-faq-card.str-active {
    background: linear-gradient(180deg, #1C4F96 0%, var(--str-blue) 100%);
    color: var(--str-white);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(22, 62, 122, 0.22);
    border-color: rgba(22, 62, 122, 0.18);
}

.str-faq-card.str-active .str-card-q {
    color: var(--str-white);
    font-size: 28px;
    font-weight: 600;
}

.str-faq-card.str-active .str-card-a {
    opacity: 0.8;
    max-height: 160px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .str-faq-header { flex-direction: column; align-items: flex-start; gap: 20px;}
    .str-container { padding: 0 18px; }
    .str-faq-card { min-width: 300px; height: 400px; }
}
