/* --- SkillarCode Brand Identity --- */
:root {
    --sc-neon: #26d117;
    --sc-black: #000000;
    --sc-dark-grey: #121212;
    --sc-white: #ffffff;
    --sc-font: 'Poppins', sans-serif;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--sc-font);
    background-color: var(--sc-black);
    color: var(--sc-white);
    line-height: 1.5;
}

.sc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section Layout --- */
.sc-hero-wrapper {
    padding: 80px 0;
    background: radial-gradient(circle at top left, #2b124c 0%, #000000 40%);
}

.sc-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* --- Left Side --- */
.sc-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sc-text-neon {
    color: var(--sc-neon);
}

.sc-hero-subtext {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.sc-hero-features {
    margin-bottom: 40px;
}

/* ðŸš€ ONE-TIME IMAGE FIX */
.sc-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fits perfectly  */
    display: block;
    border-radius: 12px;
}

.sc-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #333;
    aspect-ratio: 16 / 9;
}

.sc-img-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem; color: var(--neon);
    cursor: pointer;
}

/* UI ELEMENTS */
.sc-text-neon { color: var(--neon); font-weight: 800; }
.sc-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 80px 0; align-items: center; }
.sc-btn-enroll { background: var(--neon); color: #000; padding: 15px 30px; border: none; border-radius: 8px; font-weight: 800; cursor: pointer; }

@media (max-width: 768px) {
    .sc-hero-grid { grid-template-columns: 1fr; text-align: center; }
}


/* --- Bonus Image Styling --- */
.sc-bonus-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image stretch nahi hogi */
    display: block;
    border-radius: 8px; /* Smooth corners */
    transition: transform 0.4s ease;
}

.sc-bonus-card:hover .sc-bonus-img {
    transform: scale(1.05); /* Hover par halka zoom effect */
}

.sc-mockup-container {
    width: 100%;
    height: 200px; /* Sabhi images ki height same rahegi */
    background: #000;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #333;
    margin: 15px 0;
}

/* --- Branding Colors (PDF Style) --- */
.sc-text-neon {
    color: #a3ff00; /* Lime Green from PDF */
    text-shadow: 0 0 10px rgba(163, 255, 0, 0.3);
}

.sc-bonus-card {
    background: #111;
    border: 1px solid #222;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.sc-bonus-card:hover {
    border-color: #8A2BE2; /* Purple Glow on hover */
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}

.sc-free-tag {
    color: #a3ff00;
    font-weight: 800;
    font-size: 1.2rem;
}

.sc-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.sc-icon-box {
    width: 30px;
    text-align: center;
    font-size: 1.2rem;
}

.sc-feature-item p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* --- CTA Button --- */
.sc-btn-enroll {
    background-color: var(--sc-neon);
    color: var(--sc-black);
    border: none;
    padding: 15px 35px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.sc-btn-enroll:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(38, 209, 23, 0.4);
}

.sc-old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-weight: 400;
}

/* --- Right Side: Checkerboard Image --- */
.sc-hero-media {
    position: relative;
}

.sc-checkerboard-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    background-image:
        linear-gradient(45deg, #cccccc 25%, transparent 25%),
        linear-gradient(-45deg, #cccccc 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #cccccc 75%),
        linear-gradient(-45deg, transparent 75%, #cccccc 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #333;
}

.sc-placeholder-overlay {
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .sc-hero-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .sc-hero-media {
        order: -1;
        margin-bottom: 30px;
    }

    .sc-btn-enroll {
        width: 100%;
        font-size: 1.2rem;
    }
}

/* --- Bonus Section Styles --- */
.sc-bonus-section {
    padding: 60px 0;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.sc-bonus-header {
    margin-bottom: 40px;
}

.sc-bonus-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.sc-title-underline {
    width: 120px;
    height: 4px;
    background: var(--sc-neon);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--sc-neon);
}

/* --- Responsive Grid: 3 columns PC, 2 columns Phone --- */
.sc-bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* PC Layout */
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 600px) {
    .sc-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Phone Layout (2x2) */
        gap: 12px;
    }
}

/* --- Card Design --- */
.sc-bonus-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sc-card-head {
    margin-bottom: 12px;
}

.sc-course-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Checkerboard Mockup --- */
.sc-mockup-container {
    width: 100%;
    margin-bottom: 15px;
}

.sc-checkerboard-mockup {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #ffffff;
    background-image:
        linear-gradient(45deg, #ddd 25%, transparent 25%),
        linear-gradient(-45deg, #ddd 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ddd 75%),
        linear-gradient(-45deg, transparent 75%, #ddd 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-yt-icon {
    font-size: 2.5rem;
    color: #ff0000;
    opacity: 0.8;
}

.sc-card-footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.sc-old-price {
    text-decoration: line-through;
    color: #888;
    font-weight: 400;
}

.sc-free-tag {
    color: var(--sc-neon);
}

/* --- Unlock Button --- */
.sc-unlock-area {
    margin-top: 20px;
}

.sc-btn-unlock {
    background-color: var(--sc-neon);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.sc-btn-unlock:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(38, 209, 23, 0.5);
}

@media (max-width: 480px) {
    .sc-btn-unlock {
        width: 100%;
        justify-content: center;
    }
}

.sc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Reveal Animation Classes --- */
.sc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sc-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section Header --- */
.sc-premium-learn {
    padding: 100px 0;
    overflow: hidden;
}

.sc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sc-top-tag {
    color: var(--sc-neon);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.sc-main-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-top: 10px;
}

.sc-gradient-text {
    color: var(--sc-neon);
}

/* --- Layout Grid --- */
.sc-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- Premium Accordion --- */
.sc-accordion-item {
    background: var(--sc-glass);
    border: 1px solid var(--sc-border);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.sc-accordion-item:hover {
    border-color: rgba(38, 209, 23, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.sc-accordion-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    text-align: left;
    gap: 20px;
}

.sc-item-number {
    color: var(--sc-neon);
    font-weight: 700;
    opacity: 0.6;
}

.sc-item-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
}

.sc-accordion-trigger i {
    transition: 0.3s;
    color: var(--sc-text-dim);
}

.sc-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.sc-accordion-panel p {
    padding-bottom: 24px;
    color: var(--sc-text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sc-accordion-item.open {
    border-color: var(--sc-neon);
    box-shadow: 0 10px 30px rgba(38, 209, 23, 0.1);
}

.sc-accordion-item.open i {
    transform: rotate(180deg);
    color: var(--sc-neon);
}

.sc-accordion-item.open .sc-accordion-panel {
    max-height: 200px;
}

/* --- Checkerboard UI Mockup --- */
.sc-mockup-wrap {
    position: relative;
}

.sc-ui-frame {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid var(--sc-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.sc-checkerboard-bg {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: #fff;
    background-image:
        linear-gradient(45deg, #ddd 25%, transparent 25%),
        linear-gradient(-45deg, #ddd 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ddd 75%),
        linear-gradient(-45deg, transparent 75%, #ddd 75%);
    background-size: 20px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.sc-hacker-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(38, 209, 23, 0.05));
    animation: scanline 4s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* --- Certification Section --- */
.sc-cert-premium {
    padding: 60px 0 100px;
}

.sc-cert-box {
    background: linear-gradient(90deg, #111 0%, #080808 100%);
    border: 1px solid var(--sc-border);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px;
    align-items: center;
}

.sc-cert-tag {
    color: var(--sc-neon);
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.sc-cert-h {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.sc-features-minimal {
    list-style: none;
    margin-bottom: 40px;
}

.sc-features-minimal li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--sc-text-dim);
}

.sc-features-minimal i {
    color: var(--sc-neon);
}

.sc-btn-modern {
    background: var(--sc-neon);
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.sc-price-minimal {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

.sc-price-minimal span {
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-right: 10px;
    opacity: 0.4;
    color: #fff;
}

.sc-checkerboard-landscape {
    width: 100%;
    aspect-ratio: 1.4;
    background-color: #fff;
    background-image:
        linear-gradient(45deg, #eee 25%, transparent 25%),
        linear-gradient(-45deg, #eee 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #eee 75%),
        linear-gradient(-45deg, transparent 75%, #eee 75%);
    background-size: 40px 40px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .sc-layout-grid,
    .sc-cert-box {
        grid-template-columns: 1fr;
    }

    .sc-cert-box {
        padding: 40px;
    }

    .sc-mockup-wrap {
        order: -1;
        margin-bottom: 40px;
    }
}


/* --- Reveal Animation --- */
.sc-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Main Card --- */
.sc-checkout-card {
    background: var(--sc-card-bg);
    border: 1px solid var(--sc-border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* --- Header Section --- */
.sc-checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.sc-alert-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(38, 209, 23, 0.1);
    color: var(--sc-neon);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Premium Learn / Curriculum Styles */
.sc-premium-learn {
    background-color: #050505;
    padding: 100px 0;
}

.sc-main-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 20px;
    text-align: center;
}

.sc-gradient-text {
    background: linear-gradient(90deg, #8A2BE2, #a3ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sc-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 60px;
    align-items: start;
}

/* UI FRAME REPLACEMENT */
.sc-ui-frame {
    position: relative;
    border-radius: 20px;
    background: #111;
    padding: 12px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.sc-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    filter: brightness(0.9);
    transition: 0.5s ease;
}

.sc-ui-frame:hover .sc-mockup-img {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* Neon Glow Effect behind image */
.sc-neon-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.sc-frame-dots {
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.sc-frame-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
}

/* Accordion Elements */
.sc-accordion-item {
    background: #111;
    border: 1px solid #222;
    margin-bottom: 12px;
    border-radius: 10px;
}

.sc-accordion-trigger {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
}

.sc-item-number {
    color: #a3ff00;
    margin-right: 15px;
    font-weight: 800;
}

.sc-item-title { flex-grow: 1; }

.sc-accordion-panel {
    padding: 0 20px 20px 50px;
    display: none;
    color: #aaa;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .sc-layout-grid { grid-template-columns: 1fr; }
    .sc-main-heading { font-size: 2.2rem; }
}

.sc-checkout-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
}

.sc-text-neon {
    color: var(--sc-neon);
}

.sc-checkout-subtitle {
    color: var(--sc-text-muted);
    margin-top: 10px;
    font-size: 1rem;
}

/* --- Items List --- */
.sc-items-list {
    margin-bottom: 40px;
    border-top: 1px solid var(--sc-border);
}

.sc-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--sc-border);
}

.sc-item-name {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-item-name i {
    color: var(--sc-neon);
    font-size: 0.9rem;
}

.sc-item-value {
    color: var(--sc-text-muted);
    font-weight: 400;
    font-size: 0.95rem;
}

/* --- Pricing Summary (The Highlight) --- */
.sc-price-summary {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--sc-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sc-label-total {
    font-size: 0.9rem;
    color: var(--sc-text-muted);
    margin-bottom: 5px;
}

.sc-strike-grey {
    text-decoration: line-through;
    opacity: 0.5;
}

.sc-final-price {
    font-size: 2.5rem;
    font-weight: 800;
}

.sc-price-badge-pill {
    background: var(--sc-neon);
    color: var(--sc-black);
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
}

/* --- Action Area --- */
.sc-scarcity-text {
    text-align: center;
    font-size: 0.9rem;
    color: #ffab00;
    margin-bottom: 20px;
    font-weight: 500;
}

.sc-btn-premium-cta {
    width: 100%;
    background: #ffffff;
    /* Contrast White for premium look */
    color: #000000;
    border: none;
    padding: 22px;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.sc-btn-premium-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: var(--sc-neon);
    color: #000;
}

.sc-trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    color: var(--sc-text-muted);
    font-size: 0.85rem;
}

.sc-trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .sc-checkout-card {
        padding: 30px 20px;
    }

    .sc-price-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .sc-item-name {
        font-size: 0.9rem;
    }
}

/* --- SC-BUNDLE-V3 UNIQUE STYLES --- */
.sc-bundle-v3-wrapper {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.sc-bundle-v3-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.sc-bundle-v3-header {
    text-align: center;
    margin-bottom: 50px;
}

.sc-bundle-v3-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
}

.sc-bundle-v3-neon {
    color: #26d117;
}

.sc-bundle-v3-subtitle {
    color: #888;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Card Styling */
.sc-bundle-v3-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sc-bundle-v3-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 320px 1fr;
    overflow: hidden;
    transition: 0.3s ease;
}

.sc-bundle-v3-card:hover {
    border-color: #26d117;
    transform: translateY(-5px);
}

/* Visual/Image Area */
.sc-bundle-v3-visual {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-bundle-v3-mockup-box {
    width: 100%;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-bundle-v3-checkerboard {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(-45deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 20px 20px;
}

.sc-bundle-v3-icon {
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Content Area */
.sc-bundle-v3-content {
    padding: 40px;
}

.sc-bundle-v3-badge {
    background: #26d117;
    color: #000;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.sc-bundle-v3-item-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sc-bundle-v3-price {
    color: #26d117;
    font-size: 1.1rem;
}

.sc-bundle-v3-item-desc {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.sc-bundle-v3-points {
    list-style: none;
    padding: 0;
}

.sc-bundle-v3-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #eee;
}

.sc-bundle-v3-points i {
    color: #26d117;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 800px) {
    .sc-bundle-v3-card {
        grid-template-columns: 1fr;
    }

    .sc-bundle-v3-visual {
        padding-bottom: 0;
    }

    .sc-bundle-v3-mockup-box {
        aspect-ratio: 16/9;
    }
}

/* --- SC-FINAL-V5 UNIQUE STYLES --- */
.sc-final-v5-wrapper {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    /* Kyunki ye section ke andar jayega */
    font-family: 'Poppins', sans-serif;
}

/* Banner Box with Green Border */
.sc-final-v5-banner {
    border: 1px solid #26d117;
    border-radius: 50px;
    padding: 20px 40px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    max-width: 100%;
}

.sc-final-v5-banner-h {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.sc-final-v5-banner-p {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Red/Pink glow like in the image */
.sc-final-v5-glow {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 68, 68, 0.3);
    filter: blur(35px);
    z-index: 1;
}

/* The Huge Neon Button */
.sc-final-v5-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ccff33;
    /* Exact Lime Neon from Image */
    color: #000000;
    text-decoration: none;
    padding: 22px 60px;
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 800;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(204, 255, 51, 0.3);
}

.sc-final-v5-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(204, 255, 51, 0.5);
    background-color: #d9ff66;
}

.sc-final-v5-emoji {
    margin-right: 15px;
    font-size: 2.2rem;
}

/* Certification Section Styling */
.sc-cert-premium {
    padding: 100px 0;
    background: #000;
}

.sc-cert-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    background: #0a0a0a;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #222;
}

.sc-cert-tag {
    color: #a3ff00; /* Neon Lime Green from PDF [cite: 26, 34] */
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sc-cert-h {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.sc-features-minimal {
    list-style: none;
    margin-bottom: 40px;
}

.sc-features-minimal li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-features-minimal i {
    color: #a3ff00;
}

/* Image Handling */
.sc-img-fluid {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.sc-cert-shadow {
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3); /* Purple Glow */
    border: 1px solid #333;
    transition: 0.3s;
}

.sc-cert-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(163, 255, 0, 0.2); /* Green Glow */
}

.sc-btn-modern {
    background: #a3ff00;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
}

.sc-text-neon {
    color: #a3ff00;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 992px) {
    .sc-cert-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    .sc-features-minimal li { justify-content: center; }
    .sc-cert-h { font-size: 2rem; }
}

/* Responsive fixes */
@media (max-width: 768px) {
    .sc-final-v5-banner {
        padding: 15px 25px;
        border-radius: 25px;
    }

    .sc-final-v5-banner-h {
        font-size: 1.2rem;
    }

    .sc-final-v5-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        line-height: 1.3;
        width: 100%;
    }

    .sc-final-v5-emoji {
        font-size: 1.5rem;
    }
}

/* --- SC-FINAL-V6 UNIQUE STYLES --- */
.sc-final-v6-wrapper {
    padding-top: 50px;
    /* Spacing from the cards above */
    padding-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    max-width: 900px;
    margin: 0 auto;
}

/* The sleek dark box */
.sc-final-v6-box {
    background: #0d0d0d;
    /* Dark Premium Background */
    border: 1px solid rgba(38, 209, 23, 0.3);
    /* Subtle Neon Border */
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sc-final-v6-box:hover {
    border-color: #26d117;
    /* Brighten border on hover */
    transform: translateY(-3px);
}

/* Text Area */
.sc-final-v6-text {
    flex: 1;
    padding-right: 20px;
}

.sc-final-v6-heading {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sc-final-v6-subtext {
    color: #aaaaaa;
    font-size: 1rem;
    margin: 0;
}

/* --- Bonus V3 Image Styles --- */
.sc-bundle-v3-wrapper {
    background: #000;
    padding: 80px 0;
}

.sc-v3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
    transition: 0.5s ease;
}

.sc-bundle-v3-card:hover .sc-v3-img {
    filter: brightness(1);
    transform: scale(1.05);
}

.sc-bundle-v3-mockup-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    background: #111;
}

.sc-bundle-v3-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #a3ff00; /* Neon Lime Green from PDF */
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 50%;
    z-index: 2;
}

/* --- Funnel Typography & Badges --- */
.sc-bundle-v3-neon {
    color: #a3ff00;
    text-shadow: 0 0 10px rgba(163, 255, 0, 0.4);
}

.sc-bundle-v3-badge {
    background: #a3ff00;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 10px;
    display: inline-block;
}

.sc-bundle-v3-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    background: #111;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid #222;
    align-items: center;
}

.sc-btn-v6-pro {
    background: #a3ff00;
    color: #000;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}

.sc-btn-v6-pro:hover {
    box-shadow: 0 0 25px rgba(163, 255, 0, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .sc-bundle-v3-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}


/* --- Urgency V9 Styles --- */
.sc-urgency-v9-wrapper {
    background: #000;
    padding: 100px 0;
    overflow: hidden;
}

.sc-urgency-v9-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Image Handling */
.sc-v9-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(40%) contrast(1.1);
    transition: 0.4s ease;
}

.sc-v9-img-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.5;
}

.sc-v9-item-inner:hover .sc-v9-img-icon {
    opacity: 0.9;
    transform: scale(1.1);
}

/* UI Layout */
.sc-urgency-v9-main-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Seal Styling (Page 13 "Do Not Delay" Style) */
.sc-urgency-v9-seal {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #ff4444; /* Danger Red */
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform: rotate(-15deg);
    box-shadow: 0 10px 20px rgba(255, 68, 68, 0.4);
    border: 3px dashed #fff;
}

.sc-v9-big { font-size: 1.4rem; font-weight: 900; display: block; }
.sc-v9-small { font-size: 0.7rem; display: block; }

.sc-urgency-v9-person-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    border: 1px solid #333;
}

.sc-v9-warn-icon { color: #ffcc00; font-size: 2.5rem; margin-bottom: 20px; }
.sc-urgency-v9-title { font-size: 2.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 30px; color: #fff; }

/* List Styles (Page 13 "X" Marks) */
.sc-urgency-v9-list { list-style: none; margin-bottom: 40px; }
.sc-urgency-v9-list li { margin-bottom: 18px; display: flex; gap: 15px; font-size: 1.05rem; color: #ccc; }
.sc-urgency-v9-list i { color: #ff4444; margin-top: 4px; }

.sc-urgency-v9-insight-box {
    background: #111;
    padding: 25px;
    border-left: 5px solid #a3ff00; /* Neon Lime */
    border-radius: 0 10px 10px 0;
}

/* Grid & Bottom */
.sc-urgency-v9-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.sc-v9-item-inner { position: relative; height: 120px; border-radius: 12px; overflow: hidden; border: 1px solid #222; cursor: pointer; }
.sc-v9-item-inner i { position: absolute; top: 10px; right: 10px; color: #a3ff00; }

.sc-urgency-v9-decision-card { background: #1a1a1a; padding: 40px; border-radius: 25px; text-align: center; border: 1px solid #333; margin-bottom: 40px; }
.sc-v9-pills { display: flex; justify-content: center; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
.sc-pill-item { background: #333; padding: 6px 15px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: #a3ff00; }

.sc-btn-v9-fomo {
    background: #a3ff00;
    color: #000;
    width: 100%;
    padding: 22px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(163, 255, 0, 0.3);
}

.sc-pulse { animation: sc-v9-pulse 2s infinite; }
@keyframes sc-v9-pulse {
    0% { box-shadow: 0 0 0 0 rgba(163, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(163, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(163, 255, 0, 0); }
}

@media (max-width: 992px) {
    .sc-urgency-v9-main-row { grid-template-columns: 1fr; }
    .sc-urgency-v9-grid { grid-template-columns: repeat(2, 1fr); }
}


/* --- Testimonials V11 Style --- */
.sc-v11-testi-sec {
    background-color: #000;
    padding: 100px 0;
    overflow: hidden;
}

.sc-v11-sec-header {
    text-align: center;
    margin-bottom: 60px;
}

.sc-v11-sec-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.sc-text-neon {
    color: #a3ff00; /* Neon Lime Green from PDF */
    text-shadow: 0 0 15px rgba(163, 255, 0, 0.4);
}

.sc-v11-neon-line {
    width: 80px;
    height: 4px;
    background: #a3ff00;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Slider Track */
.sc-v11-slider-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.sc-v11-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 10px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.sc-v11-slider-track::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

/* Testimonial Card */
.sc-v11-card {
    min-width: 320px;
    background: #111;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid #222;
    transition: 0.3s ease;
    text-align: center;
}

.sc-v11-card:hover {
    border-color: #8A2BE2; /* Purple Glow from PDF */
    transform: translateY(-10px);
}

.sc-v11-card-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #8A2BE2, #a3ff00);
}

/* Avatar Handling */
.sc-v11-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #a3ff00;
    box-shadow: 0 0 20px rgba(163, 255, 0, 0.2);
}

.sc-v11-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sc-v11-card-body h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sc-v11-card-body p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Navigation */
.sc-v11-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #a3ff00;
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: 0.3s;
}

.sc-v11-prev { left: -60px; }
.sc-v11-next { right: -60px; }

.sc-v11-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(163, 255, 0, 0.5);
}

@media (max-width: 1200px) {
    .sc-v11-nav { display: none; }
}

/* Professional Button */
.sc-btn-v6-pro {
    background-color: #26d117;
    /* Neon Green */
    color: #000000;
    /* Black Text for Contrast */
    border: none;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(38, 209, 23, 0.2);
    white-space: nowrap;
}

.sc-btn-v6-pro:hover {
    background-color: #2ecc71;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(38, 209, 23, 0.4);
}

.sc-btn-v6-pro i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.sc-btn-v6-pro:hover i {
    transform: translateX(5px);
}

/* Trust Text Below */
.sc-final-v6-trust {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sc-final-v6-trust i {
    color: #26d117;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sc-final-v6-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .sc-final-v6-text {
        padding-right: 0;
        margin-bottom: 25px;
    }

    .sc-final-v6-action-area {
        width: 100%;
    }

    .sc-btn-v6-pro {
        width: 100%;
        justify-content: center;
        padding: 18px;
    }
}

/* --- SC-URGENCY-V9 UNIQUE STYLES --- */
.sc-urgency-v9-wrapper {
    background-color: #000;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
    width: 100%;
}

.sc-urgency-v9-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fix: Main Layout for PC */
.sc-urgency-v9-main-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    opacity: 1;
    /* Forced visibility for PC */
}

/* Industrial Badge Styling */
.sc-urgency-v9-visual-side {
    flex: 0 0 380px;
    position: relative;
    z-index: 5;
}

.sc-urgency-v9-seal {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 10;
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    width: 125px;
    height: 125px;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.4);
    animation: sc-v9-float 3s ease-in-out infinite;
}

.sc-urgency-v9-seal-inner {
    border: 2px dashed rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 800;
    text-align: center;
}

.sc-v9-small {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.sc-v9-big {
    font-size: 1.3rem;
    line-height: 1;
}

@keyframes sc-v9-float {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-12px) rotate(4deg);
    }
}

/* Image Placeholder Pattern */
.sc-urgency-v9-person-card {
    width: 100%;
    aspect-ratio: 4/5;
    background: #111;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.sc-urgency-v9-checker-bg {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, #222 25%, transparent 25%),
        linear-gradient(-45deg, #222 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #222 75%),
        linear-gradient(-45deg, transparent 75%, #222 75%);
    background-size: 30px 30px;
}

/* Consequence Content */
.sc-urgency-v9-text-side {
    flex: 1;
}

.sc-urgency-v9-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.sc-v9-warn-icon {
    font-size: 2.2rem;
    color: #ffb400;
}

.sc-urgency-v9-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.sc-urgency-v9-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.sc-urgency-v9-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.4;
}

.sc-urgency-v9-list i {
    color: #ff4444;
    font-size: 1.1rem;
    margin-top: 3px;
}

.sc-urgency-v9-insight-box {
    background: rgba(255, 180, 0, 0.08);
    border-left: 4px solid #ffb400;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

/* The Grid: Professional 4*1 PC / 2*2 Mobile */
.sc-urgency-v9-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.sc-v9-item-inner {
    background: #111;
    aspect-ratio: 1;
    border-radius: 15px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sc-v9-item-inner i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.08);
}

.sc-v9-mini-checker {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, #222 25%, transparent 25%), linear-gradient(-45deg, #222 25%, transparent 25%);
    background-size: 15px 15px;
    opacity: 0.4;
}

/* Decision Box */
.sc-urgency-v9-decision-card {
    background: #0d0d0d;
    border: 1px solid #26d117;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.sc-v9-pills {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.sc-pill-item {
    background: rgba(38, 209, 23, 0.1);
    color: #26d117;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Pulsing Red Button */
.sc-v9-btn-container {
    text-align: center;
}

.sc-btn-v9-fomo {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 22px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
    animation: sc-v9-pulse 2s infinite;
}

@keyframes sc-v9-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 20px rgba(255, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}

/* Scroll Animation Hooks */
.sc-v9-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.sc-v9-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Fixes --- */
@media (max-width: 900px) {
    .sc-urgency-v9-main-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .sc-urgency-v9-visual-side {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .sc-urgency-v9-header {
        flex-direction: column;
        align-items: center;
    }

    .sc-urgency-v9-title {
        font-size: 1.4rem;
    }

    .sc-urgency-v9-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sc-v9-pills {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .sc-btn-v9-fomo {
        width: 100%;
        font-size: 1rem;
        padding: 20px;
    }

    .sc-urgency-v9-seal {
        width: 100px;
        height: 100px;
        top: -15px;
        right: 0;
    }
}


/* --- V11 SCOPED STYLES --- */
:root {
    --v11-neon: #ccff33;
    --v11-black: #000000;
    --v11-dark: #121212;
    --v11-border: #222222;
}

.sc-final-v11-scope {
    background: var(--v11-black);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.sc-v11-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tight Headers */
.sc-v11-sec-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.sc-v11-sec-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
}

.sc-v11-neon-line {
    width: 50px;
    height: 3px;
    background: var(--v11-neon);
    margin: 5px auto;
}

/* Testimonials - PC 3, Mobile 2 Grid + Scroll Snap */
.sc-v11-slider-wrap {
    position: relative;
    width: 100%;
}

.sc-v11-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 0 30px;
    scrollbar-width: none;
}

.sc-v11-slider-track::-webkit-scrollbar {
    display: none;
}

.sc-v11-card {
    flex: 0 0 calc(33.33% - 10px);
    /* Desktop: 3 cards */
    scroll-snap-align: start;
    background: var(--v11-dark);
    border: 1px solid var(--v11-border);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.sc-v11-card-top {
    height: 50px;
    background: var(--v11-neon);
}

.sc-v11-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    margin: -30px auto 10px;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--v11-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-v11-card-body {
    padding: 0 15px 20px;
    text-align: center;
}

.sc-v11-card-body h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.sc-v11-card-body p {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.4;
}

/* Slider Nav */
.sc-v11-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.sc-v11-prev {
    left: -5px;
}

.sc-v11-next {
    right: -5px;
}

/* FAQ Accordion (Tight) */
.sc-v11-faq-sec {
    padding: 20px 0;
}

.sc-v11-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.sc-v11-faq-item {
    background: var(--v11-dark);
    border-radius: 8px;
    margin-bottom: 6px;
}

.sc-v11-faq-q {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.sc-v11-faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    color: #888;
    font-size: 0.85rem;
}

.sc-v11-faq-item.active .sc-v11-faq-a {
    padding-bottom: 15px;
    max-height: 100px;
}

/* Footer */
.sc-v11-footer {
    padding: 40px 0 120px;
    text-align: center;
    border-top: 1px solid #111;
}

.sc-v11-logo-placeholder {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    margin: 0 auto 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    position: relative;
}

.sc-v11-policy-links {
    margin: 15px 0;
    font-size: 0.75rem;
    color: #555;
}

.sc-v11-policy-links a {
    color: #888;
    text-decoration: none;
}

.sc-v11-copyright {
    font-size: 0.7rem;
    color: #333;
}

/* STICKY BAR - BOTTOM ONLY */
.sc-v11-sticky-bar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 500px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 100px;
    padding: 10px 20px;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sc-v11-sticky-bar.show {
    bottom: 20px;
}

.sc-v11-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-v11-sticky-info {
    display: flex;
    flex-direction: column;
}

.sc-v11-sticky-label {
    font-size: 0.65rem;
    color: #777;
    font-weight: 500;
}

.sc-v11-sticky-price {
    font-weight: 800;
    color: var(--v11-neon);
    font-size: 1.1rem;
}

.sc-v11-sticky-price del {
    color: #555;
    margin-right: 5px;
    font-weight: 400;
    font-size: 0.85rem;
}

.sc-v11-sticky-btn {
    background: var(--v11-neon);
    color: #000;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Checkerboard Utility */
.sc-v11-checker {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ddd 75%), linear-gradient(-45deg, transparent 75%, #ddd 75%);
    background-size: 10px 10px;
    opacity: 0.15;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .sc-v11-card {
        flex: 0 0 calc(50% - 8px);
    }

    /* 2 cards on mobile */
    .sc-v11-nav {
        display: none;
    }

    .sc-v11-sec-header {
        padding-top: 30px;
    }

    .sc-v11-sticky-bar {
        width: 92%;
        padding: 8px 15px;
    }

    .sc-v11-sticky-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}