/* ============================================================
   INFLUENCER HERO SECTION (2-COLUMN GRID)
   ============================================================ */

.sc-influencer-hero {
    padding: 140px 0 100px;
    background-color: var(--sc-bg-light);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.sc-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Left side slightly larger */
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Ambient Background Glow */
.sc-ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.sc-glow-left {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(254, 193, 7, 0.2) 0%, transparent 70%);
}

body.sc-dark-theme .sc-ambient-glow { opacity: 0.7; }

/* ================= LEFT COLUMN: CONTENT ================= */
.sc-hero-content {
    text-align: left;
}

/* --- UPDATED: Top Badge (Day/Night Contrast Fix) --- */
.sc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    
    /* Light Mode settings */
    color: #b58500; 
    background: rgba(211, 158, 0, 0.1);
    border: 1px solid rgba(211, 158, 0, 0.2);
}

body.sc-dark-theme .sc-hero-badge {
    /* Dark Mode settings */
    color: var(--sc-accent);
    background: rgba(254, 193, 7, 0.05);
    border-color: var(--sc-border);
}

.sc-blink-dot {
    width: 8px;
    height: 8px;
    background-color: currentColor; /* Inherits the color from parent based on theme */
    border-radius: 50%;
    animation: sc-blink 1.5s infinite ease-in-out;
}

@keyframes sc-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.sc-hero-title-main {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--sc-text-main);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

/* --- UPDATED: Main Yellow Text (Day/Night Contrast Fix) --- */
.sc-text-yellow { 
    color: #d39e00; /* Deep golden yellow for Light Mode */
    font-weight: 800;
}
body.sc-dark-theme .sc-text-yellow { 
    color: var(--sc-accent); /* Original bright yellow for Dark Mode */
}

.sc-text-outline {
    -webkit-text-stroke: 1.5px var(--sc-text-main);
    color: transparent;
    font-weight: 800;
}

body.sc-dark-theme .sc-text-outline {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
}

.sc-hero-desc-main {
    font-size: 17px;
    color: var(--sc-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.sc-hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

/* --- UPDATED: Primary Button (Day/Night Contrast Fix) --- */
.sc-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sc-btn-yellow-glow {
    /* Light Mode Settings */
    background-color: #ffc107; 
    color: #111111 !important;
    border: 2px solid #e0a800; 
    box-shadow: 0 8px 20px rgba(211, 158, 0, 0.2); 
}

.sc-btn-yellow-glow:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(211, 158, 0, 0.3);
}

body.sc-dark-theme .sc-btn-yellow-glow {
    /* Dark Mode Settings */
    background-color: var(--sc-accent);
    border-color: var(--sc-accent);
    box-shadow: 0 10px 25px rgba(254, 193, 7, 0.25);
}

body.sc-dark-theme .sc-btn-yellow-glow:hover {
    background-color: #ffca28;
    box-shadow: 0 15px 35px rgba(254, 193, 7, 0.4);
}

.sc-btn-dark-outline {
    background-color: transparent;
    color: var(--sc-text-main) !important;
    border: 2px solid var(--sc-border);
}

.sc-btn-dark-outline:hover {
    background-color: var(--sc-bg-light);
    border-color: var(--sc-primary);
    color: var(--sc-primary) !important;
    transform: translateY(-3px);
}

/* Trust Indicators */
.sc-hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--sc-border);
    max-width: 500px;
}

.sc-trust-avatars {
    display: flex;
    align-items: center;
}

.sc-trust-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--sc-bg-light);
    margin-left: -15px;
    object-fit: cover;
}

.sc-trust-avatars img:first-child { margin-left: 0; }

.sc-trust-plus {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--sc-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid var(--sc-bg-light);
    margin-left: -15px;
    z-index: 1;
}

.sc-trust-text strong {
    font-size: 15px;
    color: var(--sc-text-main);
}

.sc-trust-text span {
    font-size: 13px;
    color: var(--sc-text-muted);
}

/* ================= RIGHT COLUMN: VISUAL ================= */
.sc-hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sc-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.sc-main-image-container {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--sc-border);
}

body.sc-dark-theme .sc-main-image-container { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); }

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

/* Subtle overlay to make it look premium */
.sc-img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}

/* Floating Stats Cards */
.sc-floating-card {
    position: absolute;
    background: var(--sc-white);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--sc-border);
    animation: sc-float 6s ease-in-out infinite;
    z-index: 2;
    backdrop-filter: blur(10px);
}

body.sc-dark-theme .sc-floating-card {
    background: rgba(30, 41, 59, 0.85); /* Slightly transparent for dark mode */
}

.sc-float-1 {
    top: 40px;
    right: -40px;
    animation-delay: 0s;
}

.sc-float-2 {
    bottom: 60px;
    left: -50px;
    animation-delay: 3s;
}

.sc-fc-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sc-fc-info h5 {
    font-size: 18px;
    color: var(--sc-text-main);
    margin: 0 0 2px 0;
}

.sc-fc-info span {
    font-size: 12px;
    color: var(--sc-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes sc-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Decorative Dots Behind Image */
.sc-visual-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--sc-border) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1;
}

/* ================= RESPONSIVE QUERIES ================= */
@media (max-width: 992px) {
    .sc-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .sc-hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .sc-hero-title-main { font-size: 50px; }
    
    .sc-hero-trust {
        justify-content: center;
        text-align: left;
    }

    .sc-hero-visual {
        justify-content: center;
    }

    .sc-float-1 { right: -10px; top: 20px; }
    .sc-float-2 { left: -10px; }
}

@media (max-width: 768px) {
    .sc-influencer-hero { padding: 120px 0 60px; }
    .sc-hero-title-main { font-size: 40px; }
    .sc-text-outline { -webkit-text-stroke: 1px var(--sc-text-main); }
    
    .sc-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .sc-btn { width: 100%; }
    
    .sc-main-img { height: 400px; }
}


/* ============================================================
   BRANDS LOOP & STATS SHOWCASE SECTION STYLING
   ============================================================ */

.sc-brands-stats {
    padding: 80px 0;
    background-color: var(--sc-white); /* Adapts to Day/Night */
    border-top: 1px solid var(--sc-border);
    border-bottom: 1px solid var(--sc-border);
    overflow: hidden; 
}

/* --- Loop Title --- */
.sc-loop-title {
    text-align: center;
    margin-bottom: 40px;
}

.sc-loop-title h3 {
    font-size: 14px;
    color: var(--sc-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Brands Loop Styling --- */
.sc-brands-loop {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    user-select: none; 
    pointer-events: none; /* strictly non-interactive, hover won't pause */
}

.sc-brands-track {
    display: flex;
    width: calc(240px * 12); /* Increased width logic */
    animation: sc-infinite-loop 30s linear infinite; 
}

.sc-brand-item {
    width: 240px; /* Increased Size */
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Bigger Text */
    font-weight: 800;
    color: var(--sc-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sc-brand-item:nth-child(2),
.sc-brand-item:nth-child(8) { text-transform: lowercase; } /* facebook */

@keyframes sc-infinite-loop {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 6)); } /* Moves half track length */
}

/* --- Stats Showcase Styling --- */
.sc-stats-showcase {
    padding: 80px 0 0;
}

.sc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on Desktop */
    gap: 30px;
}

.sc-stat-card {
    text-align: center;
    background-color: var(--sc-white);
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid var(--sc-border);
    box-shadow: var(--sc-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.sc-dark-theme .sc-stat-card {
    background-color: var(--sc-bg-light);
}

.sc-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--sc-primary);
}

body.sc-dark-theme .sc-stat-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.sc-stat-card i {
    font-size: 42px;
    color: var(--sc-primary);
    margin-bottom: 25px;
}

.sc-stat-value {
    font-size: 48px;
    font-weight: 700;
    /* Adapting yellow text for day/night just like Hero */
    color: #d39e00; 
    margin-bottom: 10px;
    line-height: 1;
}

body.sc-dark-theme .sc-stat-value {
    color: var(--sc-accent);
}

.sc-stat-label {
    font-size: 16px;
    color: var(--sc-text-main);
    font-weight: 600;
    margin: 0;
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablet (iPad) - Switch to 2x2 Grid */
@media (max-width: 992px) {
    .sc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .sc-loop-title h3 {
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* Shrink loop a bit for mobile so more brands are visible */
    .sc-brands-track {
        width: calc(160px * 12);
        animation: sc-infinite-loop-mobile 20s linear infinite;
    }

    .sc-brand-item {
        width: 160px;
        font-size: 18px;
    }

    @keyframes sc-infinite-loop-mobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-160px * 6)); }
    }
    
    .sc-stat-card {
        padding: 30px 20px;
    }
}

/* Small Mobile - Maintain 2x2 Grid but shrink text */
@media (max-width: 480px) {
    .sc-stats-grid {
        /* Strictly maintaining 2x2 grid on mobile */
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; 
    }

    .sc-stat-card {
        padding: 25px 15px;
    }

    .sc-stat-card i {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .sc-stat-value {
        font-size: 32px;
    }

    .sc-stat-label {
        font-size: 13px;
    }
}

/* ============================================================
   PLATFORM SERVICES SECTION STYLING
   ============================================================ */
.sc-platform-services {
    padding: 80px 0;
    background-color: var(--sc-bg-light);
}

.sc-platform-card {
    border-radius: 24px;
    padding: 50px 60px;
    margin-bottom: 40px;
    color: #ffffff; /* Forces white text due to colored backgrounds */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    overflow: hidden;
    position: relative;
}

body.sc-dark-theme .sc-platform-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sc-platform-card:last-child {
    margin-bottom: 0;
}

.sc-platform-card:hover {
    transform: translateY(-5px);
}

/* --- THEMES --- */
.sc-yt-theme {
    background-color: #0f0f14; /* Deep premium black/purple */
    border: 1px solid rgba(255,255,255,0.05);
}

.sc-ig-theme {
    /* Premium Instagram Gradient */
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}

/* --- GRID LAYOUT --- */
.sc-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* --- CONTENT STYLING --- */
.sc-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.sc-yt-theme .sc-platform-badge i { color: #ff0000; }
.sc-ig-theme .sc-platform-badge i { color: #ffffff; }

.sc-platform-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 450px;
}

/* Custom Buttons */
.sc-btn-platform {
    background-color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.sc-btn-yt { color: #cc0000; }
.sc-btn-yt:hover { background-color: #ffebeb; transform: translateY(-2px); }

.sc-btn-ig { color: #833ab4; }
.sc-btn-ig:hover { background-color: #f8edff; transform: translateY(-2px); }

/* Bullet Points Grid */
.sc-platform-features {
    display: flex;
    gap: 40px;
}

.sc-platform-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-platform-features li {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.sc-platform-features li i {
    font-size: 12px;
    opacity: 0.7;
}

/* --- VISUAL STYLING (YOUTUBE) --- */
.sc-yt-mockup {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 8px solid #222;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    aspect-ratio: 16/9;
}

.sc-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Custom YT Player UI */
.sc-yt-player-ui {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px;
}

.sc-yt-progress {
    height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; margin-bottom: 10px; position: relative;
}
.sc-yt-progress::before {
    content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 30%; background: #ff0000; border-radius: 2px;
}

.sc-yt-controls { display: flex; align-items: center; gap: 15px; color: #fff; }
.sc-yt-controls i { font-size: 14px; }
.sc-yt-lines { display: flex; gap: 8px; margin-left: auto; }
.sc-yt-lines span { width: 30px; height: 10px; background: rgba(255,255,255,0.5); border-radius: 2px; }

/* --- VISUAL STYLING (INSTAGRAM PHONES) --- */
.sc-ig-visual-wrap {
    position: relative;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc-ig-phone {
    position: absolute;
    width: 160px;
    height: 320px;
    background: #000;
    border-radius: 24px;
    border: 4px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.sc-ig-phone img { width: 100%; height: 100%; object-fit: cover; }

.sc-phone-left { transform: translateX(-90px) rotate(-10deg) scale(0.85); z-index: 1; opacity: 0.8; }
.sc-phone-right { transform: translateX(90px) rotate(10deg) scale(0.85); z-index: 1; opacity: 0.8; }
.sc-phone-center { transform: translateY(-10px); z-index: 2; border: 5px solid #fff; }

.sc-ig-visual-wrap:hover .sc-phone-left { transform: translateX(-110px) rotate(-15deg) scale(0.85); }
.sc-ig-visual-wrap:hover .sc-phone-right { transform: translateX(110px) rotate(15deg) scale(0.85); }
.sc-ig-visual-wrap:hover .sc-phone-center { transform: translateY(-20px); }

.sc-ig-overlay-text {
    position: absolute; top: 20%; left: 0; width: 100%; text-align: center;
    font-size: 14px; font-weight: 600; color: #fff; text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 992px) {
    .sc-platform-card { padding: 40px 30px; }
    .sc-platform-badge { font-size: 18px; }
    .sc-ig-phone { width: 140px; height: 280px; }
    .sc-phone-left { transform: translateX(-70px) rotate(-10deg) scale(0.85); }
    .sc-phone-right { transform: translateX(70px) rotate(10deg) scale(0.85); }
}

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

    /* Important: Visual goes below content naturally in HTML order */
    
    .sc-platform-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sc-platform-badge { justify-content: center; font-size: 16px; padding: 8px 18px; }
    .sc-platform-desc { text-align: center; }
    
    .sc-platform-features {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        text-align: left;
        width: max-content;
        margin: 0 auto;
    }

    .sc-ig-visual-wrap { height: 300px; margin-top: 20px; }
}


/* ============================================================
   LINKEDIN & MEME MARKETING THEMES
   ============================================================ */

/* --- LINKEDIN THEME --- */
.sc-li-theme {
    background: linear-gradient(135deg, #0077b5, #004d7a);
}

.sc-btn-li { color: #0077b5; background-color: #ffffff; }
.sc-btn-li:hover { background-color: #e6f3ff; transform: translateY(-2px); }

/* LinkedIn specifics for overlapping phones */
.sc-li-phone {
    border: 4px solid #e1e9ee; /* Light greyish border for LinkedIn corporate feel */
    background: #ffffff;
}

.sc-li-overlay-text {
    position: absolute; top: 30%; left: 0; width: 100%; text-align: center;
    font-size: 14px; font-weight: 700; color: #0077b5; 
    background: rgba(255,255,255,0.9); padding: 8px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- MEME MARKETING THEME (Quirky & Bright) --- */
.sc-meme-theme {
    background: linear-gradient(135deg, #ffca28, #ffb300);
    color: #111111; /* Dark text for readability on yellow */
}

/* Overriding text colors specifically for Meme card */
.sc-meme-theme .sc-platform-badge {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.05);
    color: #111111;
}

.sc-meme-theme .sc-platform-badge i { color: #111111; }
.sc-meme-theme .sc-platform-desc { color: #333333; font-weight: 500; }
.sc-meme-theme .sc-platform-features li { color: #222222; }

/* Meme Button */
.sc-btn-meme {
    background-color: #111111;
    color: #ffca28 !important; /* Yellow text on black btn */
    border: 2px solid #111111;
}
.sc-btn-meme:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- MEME COLLAGE VISUAL (Tilted & Quirky) --- */
.sc-meme-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    transform: rotate(4deg); /* Quirky tilt */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 20px;
}

.sc-meme-collage:hover {
    transform: rotate(0deg) scale(1.05); /* Straightens and pops out on hover */
}

.sc-meme-item {
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.sc-meme-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.sc-meme-item:hover {
    transform: scale(1.05) rotate(-2deg);
}

.sc-meme-sticker {
    position: absolute;
    bottom: -10px;
    right: -20px;
    background: #ff3366;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 50px;
    transform: rotate(-15deg);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
    animation: sc-jiggle 2s infinite ease-in-out;
}

@keyframes sc-jiggle {
    0%, 100% { transform: rotate(-15deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.1); }
}

/* Responsive tweaks for Meme grid */
@media (max-width: 768px) {
    .sc-meme-collage { width: 100%; max-width: 400px; margin: 0 auto; transform: rotate(2deg); }
    .sc-meme-item img { height: 120px; }
    .sc-meme-sticker { right: 0; bottom: -15px; }
}


/* ============================================================
   SOLUTIONS & PROCESS SECTION STYLING
   ============================================================ */

.sc-process-section {
    padding: 100px 0;
    background-color: var(--sc-white); /* Adapts to Day/Night seamlessly */
}

/* --- Header Styling --- */
.sc-process-header {
    margin-bottom: 50px;
    max-width: 700px;
}

.sc-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--sc-accent); /* Yellow text */
    text-transform: uppercase;
    margin-bottom: 15px;
}

.sc-tag-line {
    width: 30px;
    height: 2px;
    background-color: var(--sc-accent);
}

.sc-process-header .sc-section-title {
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sc-process-header .sc-section-desc {
    font-size: 18px;
    max-width: 600px;
}

/* --- Premium Bento Grid --- */
/* The 1px gap trick creates perfect, seamless internal borders */
.sc-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; /* This acts as the internal border width */
    background-color: var(--sc-border); /* This is the border color */
    border: 1px solid var(--sc-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* --- Process Card --- */
.sc-process-card {
    background-color: var(--sc-white);
    padding: 50px 40px;
    position: relative;
    transition: background-color 0.4s ease, opacity 0.4s ease;
    z-index: 1;
}

body.sc-dark-theme .sc-process-card {
    background-color: var(--sc-bg-light); /* Dark mode card color */
}

/* Hover state logic (managed by JS class 'sc-grid-hovered' on parent) */
.sc-process-grid.sc-grid-hovered .sc-process-card {
    opacity: 0.4; /* Dim all cards */
}
.sc-process-grid.sc-grid-hovered .sc-process-card:hover {
    opacity: 1; /* Highlight focused card */
    background-color: var(--sc-bg-light); /* Slight change on hover */
}
body.sc-dark-theme .sc-process-grid.sc-grid-hovered .sc-process-card:hover {
    background-color: #1a2233; /* Slightly lighter dark shade on hover */
}

/* Watermark Numbering */
.sc-step-watermark {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    font-weight: 800;
    color: var(--sc-text-main);
    opacity: 0.03;
    line-height: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.sc-process-card:hover .sc-step-watermark {
    opacity: 0.1;
    color: var(--sc-primary);
    transform: translateY(-5px);
}

body.sc-dark-theme .sc-process-card:hover .sc-step-watermark {
    opacity: 0.08;
}

/* Card Content */
.sc-process-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 255, 0.08); /* Soft primary bg */
    color: var(--sc-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

/* Adding a subtle gradient to specific icons to match reference vibe */
.sc-process-card:nth-child(1) .sc-process-icon { color: #ff4757; background: rgba(255, 71, 87, 0.1); }
.sc-process-card:nth-child(2) .sc-process-icon { color: #ffa502; background: rgba(255, 165, 2, 0.1); }
.sc-process-card:nth-child(3) .sc-process-icon { color: #2ed573; background: rgba(46, 213, 115, 0.1); }
.sc-process-card:nth-child(4) .sc-process-icon { color: #eccc68; background: rgba(236, 204, 104, 0.1); }
.sc-process-card:nth-child(5) .sc-process-icon { color: #7bed9f; background: rgba(123, 237, 159, 0.1); }
.sc-process-card:nth-child(6) .sc-process-icon { color: #70a1ff; background: rgba(112, 161, 255, 0.1); }

.sc-process-card:hover .sc-process-icon {
    transform: scale(1.1);
}

.sc-process-card h3 {
    font-size: 20px;
    color: var(--sc-text-main);
    margin-bottom: 15px;
    font-weight: 700;
}

.sc-process-card p {
    font-size: 15px;
    color: var(--sc-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ================= RESPONSIVE LAYOUT ================= */
@media (max-width: 992px) {
    .sc-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sc-process-header .sc-section-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .sc-process-grid {
        grid-template-columns: 1fr;
    }
    .sc-process-header {
        margin-bottom: 40px;
    }
    .sc-process-card {
        padding: 40px 30px;
    }
    .sc-step-watermark {
        font-size: 50px;
    }
}


/* ============================================================
   CLIENTS COLLAGE SECTION STYLING
   ============================================================ */

.sc-clients-section {
    padding: 100px 0;
    background-color: var(--sc-bg-light); /* Contrasts with the white/dark boxes */
}

.sc-clients-section .sc-process-header {
    margin-bottom: 50px;
}

/* --- Collage Wrapper (The Dark/Light Box) --- */
.sc-clients-collage-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background-color: #1a1f2b; /* Reference image style dark background */
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Light mode override for the wrapper to keep it premium */
body:not(.sc-dark-theme) .sc-clients-collage-wrapper {
    background-color: #f8f9fa;
    border: 1px solid var(--sc-border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* --- Smart Flex Grid --- */
.sc-clients-collage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Perfect spacing between logos */
}

/* --- Individual Logo Box (The "Pill") --- */
.sc-client-logo-box {
    background-color: #ffffff; /* Always white inside the box for logo visibility */
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    
    /* This allows the box to shrink/grow based on the logo inside */
    flex: 0 1 auto; 
}

/* Dark mode adjustment for the white boxes */
body.sc-dark-theme .sc-client-logo-box {
    background-color: #ffffff; /* Keeping them white to match the reference image */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sc-client-logo-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

body.sc-dark-theme .sc-client-logo-box:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Image inside the box */
.sc-client-logo-box img {
    max-height: 35px; /* Restricts height, width adjusts automatically */
    width: auto;
    max-width: 150px; /* Prevents extremely wide logos from breaking layout */
    object-fit: contain;
    filter: grayscale(100%); /* Optional: Makes all logos grey initially for uniformity */
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* On hover, show original brand colors */
.sc-client-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Fallback Text Logo Styling --- */
/* (In case you don't have an image and just want to type the brand name) */
.sc-logo-text {
    font-size: 18px;
    font-weight: 800;
    font-family: var(--sc-font-main);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px) {
    .sc-clients-collage-wrapper {
        padding: 25px 15px;
        border-radius: 16px;
    }
    .sc-client-logo-box {
        padding: 12px 20px;
        min-height: 50px;
    }
    .sc-client-logo-box img {
        max-height: 25px;
        max-width: 120px;
    }
    .sc-logo-text {
        font-size: 15px;
    }
}


/* ============================================================
   CAMPAIGN PROCESS SECTION STYLING
   ============================================================ */

.sc-campaign-process {
    padding: 100px 0;
    background-color: var(--sc-white); /* Adapts to Day/Night seamlessly */
    border-top: 1px solid var(--sc-border);
}

.sc-campaign-process .sc-process-header {
    margin-bottom: 60px;
}

/* --- Timeline Row --- */
.sc-timeline-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --- Individual Step --- */
.sc-timeline-step {
    display: flex;
    flex-direction: column;
}

.sc-step-top {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.sc-step-num {
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    /* Day mode: Deep golden for contrast */
    color: #d39e00; 
    transition: all 0.4s ease;
}

body.sc-dark-theme .sc-step-num {
    /* Night mode: Neon yellow with premium glow */
    color: var(--sc-accent);
    text-shadow: 0 0 20px rgba(254, 193, 7, 0.4);
}

/* --- Animated Connecting Line --- */
.sc-step-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--sc-border);
    margin-left: 20px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.sc-step-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%; /* Starts at 0, filled by JS */
    background-color: var(--sc-accent);
    transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* When JS adds the active class */
.sc-timeline-step.sc-active .sc-step-line::after {
    width: 100%;
}

.sc-hide-on-desktop {
    display: none;
}

/* --- Step Content --- */
.sc-step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--sc-text-main);
    margin-bottom: 12px;
}

.sc-step-desc {
    font-size: 15px;
    color: var(--sc-text-muted);
    line-height: 1.6;
    margin: 0;
    padding-right: 15px;
}

/* ================= RESPONSIVE LAYOUT ================= */
@media (max-width: 992px) {
    .sc-timeline-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    .sc-hide-on-desktop {
        display: block; /* Show line on 2nd item in tablet view */
    }
    /* Hide line on the 2nd and 4th items for perfect 2x2 grid */
    .sc-timeline-step:nth-child(2) .sc-step-line,
    .sc-timeline-step:nth-child(4) .sc-step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .sc-timeline-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sc-step-line {
        display: block !important; /* Show lines on all for mobile */
        max-width: 100px; /* Shorten the line so it doesn't span full width */
    }
    
    .sc-step-num {
        font-size: 42px;
    }
    
    .sc-step-desc {
        padding-right: 0;
    }
}


/* ============================================================
   PURE CSS MODERN TABBED SHOWCASE (NO JS REQUIRED)
   ============================================================ */

.sc-strategy-tabs-section {
    padding: 100px 0;
    background-color: var(--sc-bg-light);
}

.sc-strategy-tabs-section .sc-process-header {
    margin-bottom: 60px;
}

.sc-tabs-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--sc-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--sc-border);
    position: relative;
}

body.sc-dark-theme .sc-tabs-container {
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ⚠️ HIDE THE RADIO BUTTONS ⚠️ */
.sc-tab-radio {
    display: none;
}

/* --- Left Side: Tab Menu --- */
.sc-tabs-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-right: 1px solid var(--sc-border);
    padding-right: 30px;
}

.sc-tab-btn {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sc-tab-btn:hover {
    background-color: rgba(0, 123, 255, 0.02);
}

.sc-tab-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--sc-text-muted);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.sc-tab-btn-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--sc-text-main);
    margin: 0 0 8px 0;
}

.sc-tab-btn-content p {
    font-size: 13px;
    color: var(--sc-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   🔥 PURE CSS CLICK LOGIC (THE MAGIC) 🔥
   ============================================================ */

/* 1. Hide all panels by default */
.sc-tab-panel {
    display: none;
    animation: sc-fade-in 0.5s ease-in-out forwards;
}

@keyframes sc-fade-in {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 2. Show the specific panel when its radio is checked */
#sc-tab-radio-1:checked ~ .sc-tabs-content-area .sc-panel-1,
#sc-tab-radio-2:checked ~ .sc-tabs-content-area .sc-panel-2,
#sc-tab-radio-3:checked ~ .sc-tabs-content-area .sc-panel-3 {
    display: block;
}

/* 3. Highlight the specific label when its radio is checked */
#sc-tab-radio-1:checked ~ .sc-tabs-menu .sc-label-1,
#sc-tab-radio-2:checked ~ .sc-tabs-menu .sc-label-2,
#sc-tab-radio-3:checked ~ .sc-tabs-menu .sc-label-3 {
    background-color: var(--sc-bg-light);
    border-color: var(--sc-border);
    box-shadow: inset 4px 0 0 var(--sc-accent);
}

body.sc-dark-theme #sc-tab-radio-1:checked ~ .sc-tabs-menu .sc-label-1,
body.sc-dark-theme #sc-tab-radio-2:checked ~ .sc-tabs-menu .sc-label-2,
body.sc-dark-theme #sc-tab-radio-3:checked ~ .sc-tabs-menu .sc-label-3 {
    background-color: #1a2233;
}

/* Highlight the number inside the active label */
#sc-tab-radio-1:checked ~ .sc-tabs-menu .sc-label-1 .sc-tab-num,
#sc-tab-radio-2:checked ~ .sc-tabs-menu .sc-label-2 .sc-tab-num,
#sc-tab-radio-3:checked ~ .sc-tabs-menu .sc-label-3 .sc-tab-num {
    color: var(--sc-accent);
    opacity: 1;
}

/* ============================================================
   Visual Elements styling
   ============================================================ */
.sc-tabs-content-area { position: relative; display: flex; align-items: center; }
.sc-panel-text { margin-bottom: 40px; }
.sc-panel-text p { font-size: 16px; line-height: 1.7; color: var(--sc-text-muted); margin-bottom: 15px; }

.sc-panel-visual { display: flex; justify-content: center; }
.sc-polaroid-group { position: relative; width: 220px; height: 220px; }
.sc-pol-bg { position: absolute; width: 180px; height: 200px; object-fit: cover; border: 6px solid #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: rotate(-10deg) translate(-10px, 10px); }
.sc-pol-main { position: absolute; width: 180px; background: #fff; padding: 6px 6px 25px 6px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); transform: rotate(5deg) translate(20px, -10px); z-index: 2; }
.sc-pol-main img { width: 100%; height: 160px; object-fit: cover; }
.sc-pol-name { position: absolute; bottom: 5px; left: 0; width: 100%; text-align: center; font-weight: 800; color: #111; font-size: 12px; }
.sc-click-cursor { position: absolute; bottom: -15px; right: 15px; font-size: 30px; color: #ffca28; z-index: 3; animation: sc-bounce-click 1.5s infinite; }

.sc-acc-image-box { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.1); width: 100%; max-width: 400px; }
.sc-acc-image-box img { width: 100%; height: 220px; object-fit: cover; display: block; }
.sc-acc-floating-badge { position: absolute; bottom: 15px; left: 15px; background: var(--sc-accent); color: #111; padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px; }

.sc-ig-visual-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.sc-ig-phone { position: absolute; width: 130px; height: 250px; background: #000; border-radius: 18px; border: 3px solid #ffffff; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.sc-ig-phone img { width: 100%; height: 100%; object-fit: cover; }
.sc-phone-left { transform: translateX(-70px) rotate(-10deg) scale(0.9); z-index: 1; }
.sc-phone-right { transform: translateX(70px) rotate(10deg) scale(0.9); z-index: 1; }
.sc-phone-center { transform: translateY(-10px); z-index: 2; border: 4px solid #fff; }
.sc-play-btn-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 35px; height: 35px; background: rgba(255,255,255,0.9); color: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; z-index: 2; }
.sc-speaker-badge { position: absolute; top: -10px; left: -10px; background: #8e44ad; color: white; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; transform: rotate(-15deg); z-index: 3; }

/* ================= RESPONSIVE (With Final Mobile Fix) ================= */
@media (max-width: 992px) {
    .sc-tabs-container { 
        grid-template-columns: 1fr; 
        padding: 30px; 
    }
    .sc-tabs-menu { 
        border-right: none; 
        border-bottom: 1px solid var(--sc-border); 
        padding-right: 0; 
        padding-bottom: 30px; 
        flex-direction: column; /* Stacks buttons vertically */
        overflow-x: visible; 
    }
    .sc-tab-btn { 
        width: 100%; 
        min-width: 100%;
        margin-bottom: 10px; 
    }
    .sc-tab-btn:last-child {
        margin-bottom: 0;
    }
    
    #sc-tab-radio-1:checked ~ .sc-tabs-menu .sc-label-1,
    #sc-tab-radio-2:checked ~ .sc-tabs-menu .sc-label-2,
    #sc-tab-radio-3:checked ~ .sc-tabs-menu .sc-label-3 { 
        box-shadow: inset 4px 0 0 var(--sc-accent); 
    }
}

@media (max-width: 768px) {
    .sc-tabs-container { padding: 20px; }
    .sc-panel-text p { font-size: 15px; }
    .sc-tab-btn { padding: 15px; }
    .sc-tab-btn-content h4 { font-size: 16px; }
    .sc-tab-num { font-size: 20px; }
}


/* ============================================================
   INFLUENCER CATEGORIES STYLING (PURE CSS)
   ============================================================ */

.sc-categories-section {
    padding: 100px 0;
    background-color: var(--sc-white); /* Adjusts to dark mode automatically */
    border-top: 1px solid var(--sc-border);
}

.sc-categories-section .sc-process-header {
    margin-bottom: 40px;
}

/* ⚠️ HIDDEN RADIOS ⚠️ */
.sc-cat-radio {
    display: none;
}

/* --- Premium Pill Switch --- */
.sc-cat-switch-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.sc-cat-switch {
    position: relative;
    display: inline-flex;
    background-color: var(--sc-bg-light);
    border: 1px solid var(--sc-border);
    border-radius: 50px;
    padding: 5px;
    width: 400px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

body.sc-dark-theme .sc-cat-switch {
    background-color: #1a2233;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.3);
}

/* The Animated Sliding Background */
.sc-cat-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background-color: var(--sc-white);
    border-radius: 50px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

body.sc-dark-theme .sc-cat-slider {
    background-color: #2a303c;
}

/* Labels (The Clickable Tabs) */
.sc-cat-label {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--sc-text-muted);
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- Pure CSS Switch Logic --- */

/* Slide the slider */
#cat-ig:checked ~ .sc-cat-switch-wrapper .sc-cat-slider {
    transform: translateX(100%);
}

/* Change Text Color when Active */
#cat-yt:checked ~ .sc-cat-switch-wrapper .sc-yt-label {
    color: #cc0000; /* YouTube Red */
}

#cat-ig:checked ~ .sc-cat-switch-wrapper .sc-ig-label {
    color: #e1306c; /* Instagram Pink/Purple */
}

/* --- Show/Hide Content Logic --- */
.sc-cat-panel {
    display: none; /* Hidden by default */
    animation: sc-fade-up 0.5s ease forwards;
}

#cat-yt:checked ~ .sc-cat-content .sc-panel-yt { display: block; }
#cat-ig:checked ~ .sc-cat-content .sc-panel-ig { display: block; }

@keyframes sc-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Category Grid & Cards --- */
.sc-cat-grid {
    display: grid;
    /* Auto-fit creates columns based on screen size automatically */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.sc-cat-card {
    background-color: var(--sc-white);
    border: 1px solid var(--sc-border);
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

body.sc-dark-theme .sc-cat-card {
    background-color: var(--sc-bg-light);
}

.sc-cat-card i {
    font-size: 32px;
    color: var(--sc-text-muted);
    transition: all 0.3s ease;
}

.sc-cat-card span {
    font-size: 15px;
    font-weight: 600;
    color: var(--sc-text-main);
}

/* Hover Effects (Brand Specific) */
.sc-panel-yt .sc-cat-card:hover {
    border-color: rgba(204, 0, 0, 0.3);
    box-shadow: 0 10px 25px rgba(204, 0, 0, 0.08);
    transform: translateY(-5px);
}
.sc-panel-yt .sc-cat-card:hover i { color: #cc0000; transform: scale(1.1); }

.sc-panel-ig .sc-cat-card:hover {
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.08);
    transform: translateY(-5px);
}
.sc-panel-ig .sc-cat-card:hover i { color: #e1306c; transform: scale(1.1); }

body.sc-dark-theme .sc-panel-yt .sc-cat-card:hover { box-shadow: 0 10px 25px rgba(204, 0, 0, 0.2); }
body.sc-dark-theme .sc-panel-ig .sc-cat-card:hover { box-shadow: 0 10px 25px rgba(225, 48, 108, 0.2); }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .sc-cat-switch {
        width: 100%;
        max-width: 350px;
    }
    .sc-cat-label {
        font-size: 14px;
        padding: 12px 0;
    }
    .sc-cat-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px;
    }
    .sc-cat-card {
        padding: 20px 10px;
    }
    .sc-cat-card i {
        font-size: 26px;
    }
    .sc-cat-card span {
        font-size: 13px;
    }
}


/* ============================================================
   CLIENT REVIEWS (TESTIMONIALS) STYLING
   ============================================================ */

.sc-reviews-section {
    padding: 100px 0;
    background-color: var(--sc-bg-light);
}

.sc-reviews-section .sc-process-header {
    margin-bottom: 50px;
    max-width: 600px;
}

/* --- The Grid --- */
.sc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 layout on desktop */
    gap: 30px;
}

/* --- Premium Review Card --- */
.sc-review-card {
    background-color: var(--sc-white);
    border: 1px solid var(--sc-border);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

body.sc-dark-theme .sc-review-card {
    background-color: #161b22; /* Deep dark background matching your image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Hover Effect */
.sc-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 193, 7, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

body.sc-dark-theme .sc-review-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Watermark Quote Icon */
.sc-quote-watermark {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: var(--sc-text-muted);
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sc-review-card:hover .sc-quote-watermark {
    opacity: 0.08;
    transform: scale(1.1) rotate(5deg);
}

/* Stars */
.sc-stars {
    color: #ffc107; /* Bright Yellow/Gold */
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

/* Review Text */
.sc-review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--sc-text-muted);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the reviewer info to the bottom perfectly */
}

body.sc-dark-theme .sc-review-text {
    color: #a0aec0; /* Slightly brighter text in dark mode for readability */
}

/* --- Reviewer Info --- */
.sc-reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--sc-border);
    padding-top: 20px;
}

.sc-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #111111; /* Dark text on colored background */
    flex-shrink: 0;
}

.sc-reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sc-reviewer-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--sc-text-main);
    margin: 0;
}

.sc-reviewer-info span {
    font-size: 13px;
    color: var(--sc-text-muted);
    font-weight: 500;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 992px) {
    .sc-reviews-grid {
        gap: 20px;
    }
    .sc-review-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .sc-process-header {
        text-align: center;
        margin: 0 auto 40px auto;
    }
    .sc-tagline {
        justify-content: center;
    }
    
    /* Switch to 1 column on mobile */
    .sc-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .sc-review-card {
        padding: 25px;
    }
    .sc-review-text {
        font-size: 14px;
    }
}

/* ============================================================
   CTA & LEAD FORM SECTION STYLING
   ============================================================ */

.sc-cta-section {
    padding: 100px 0;
    background-color: var(--sc-bg-light);
    position: relative;
    border-top: 1px solid var(--sc-border);
    overflow: hidden;
}

.sc-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Form side slightly wider */
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* --- Left Side: Content --- */
.sc-cta-content .sc-section-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.sc-cta-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--sc-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.sc-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sc-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sc-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(254, 193, 7, 0.1);
    color: var(--sc-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sc-info-item h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: var(--sc-text-main);
}

.sc-info-item span {
    font-size: 14px;
    color: var(--sc-text-muted);
}

/* --- Right Side: The Form --- */
.sc-cta-form-wrapper {
    background-color: var(--sc-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid var(--sc-border);
}

body.sc-dark-theme .sc-cta-form-wrapper {
    background-color: #1a202c; /* Deep form background */
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.sc-form-header {
    margin-bottom: 30px;
}

.sc-form-header h3 {
    font-size: 28px;
    color: var(--sc-text-main);
    margin: 0 0 8px 0;
}

.sc-form-header p {
    font-size: 15px;
    color: var(--sc-text-muted);
    margin: 0;
}

/* Form Inputs Layout */
.sc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sc-input-group {
    margin-bottom: 20px;
    position: relative;
}

.sc-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--sc-text-main);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Base styling for inputs, selects, and textarea */
.sc-input-group input,
.sc-input-group select,
.sc-input-group textarea {
    width: 100%;
    background-color: var(--sc-bg-light);
    border: 1px solid var(--sc-border);
    color: var(--sc-text-main);
    padding: 15px 18px;
    border-radius: 10px;
    font-family: var(--sc-font-main);
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Placeholder styling */
.sc-input-group input::placeholder,
.sc-input-group textarea::placeholder {
    color: var(--sc-text-muted);
    opacity: 0.6;
}

/* Focus states (Premium Glow) */
.sc-input-group input:focus,
.sc-input-group select:focus,
.sc-input-group textarea:focus {
    outline: none;
    border-color: var(--sc-accent);
    box-shadow: 0 0 0 4px rgba(254, 193, 7, 0.15);
    background-color: var(--sc-white); /* Slightly brightens on focus */
}

body.sc-dark-theme .sc-input-group input:focus,
body.sc-dark-theme .sc-input-group select:focus,
body.sc-dark-theme .sc-input-group textarea:focus {
    background-color: #11151c;
}

/* --- Custom Select Dropdowns --- */
.sc-select-wrapper {
    position: relative;
}

.sc-input-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px; /* Make room for custom icon */
}

.sc-select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sc-text-muted);
    pointer-events: none; /* Allows clicking the dropdown through the icon */
    font-size: 14px;
}

/* Fix for select option background in dark mode */
body.sc-dark-theme .sc-input-group select option {
    background-color: #1a202c;
    color: #fff;
}

/* Textarea specific */
.sc-input-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button Override */
.sc-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.sc-form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--sc-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 992px) {
    .sc-cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .sc-cta-content {
        text-align: center;
    }
    .sc-cta-content .sc-section-title {
        font-size: 40px;
    }
    .sc-cta-desc {
        margin: 0 auto 40px auto;
    }
    .sc-contact-info {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }
    .sc-cta-form-wrapper {
        padding: 40px;
    }
}


/* ============================================================
   UPDATED CONTACT LINKS & WHATSAPP BUTTON
   ============================================================ */

/* Clickable Links styling */
.sc-contact-link {
    font-size: 15px;
    color: var(--sc-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sc-contact-link:hover {
    color: var(--sc-accent);
}

body.sc-dark-theme .sc-contact-link {
    color: #a0aec0;
}
body.sc-dark-theme .sc-contact-link:hover {
    color: var(--sc-accent);
}

/* WhatsApp Button Styling */
.sc-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.sc-whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.sc-whatsapp-btn i {
    font-size: 20px;
}

/* ============================================================
   SUCCESS TOAST NOTIFICATION STYLING
   ============================================================ */
.sc-toast-msg {
    visibility: hidden;
    min-width: 250px;
    background-color: #28a745; /* Success Green */
    color: #ffffff;
    text-align: center;
    border-radius: 12px;
    padding: 16px 24px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease, bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sc-toast-msg i {
    font-size: 20px;
}

/* Class added by JS to show the toast */
.sc-toast-msg.sc-show {
    visibility: visible;
    opacity: 1;
    bottom: 50px; /* Pops up nicely */
}

@media (max-width: 768px) {
    .sc-cta-content .sc-section-title {
        font-size: 35px;
    }
    .sc-form-row {
        grid-template-columns: 1fr; /* Stack inputs on mobile */
        gap: 0;
    }
    .sc-contact-info {
        flex-direction: column;
        align-items: flex-start;
        max-width: max-content;
        margin: 0 auto;
    }
    .sc-cta-form-wrapper {
        padding: 30px 20px;
    }
}


/* ============================================================
   FAQ SECTION STYLING (CENTERED)
   ============================================================ */

.sc-faq-section {
    padding: 100px 0;
    background-color: var(--sc-white);
    border-top: 1px solid var(--sc-border);
}

/* 🔥 Force Center Alignment 🔥 */
.sc-faq-wrapper {
    max-width: 850px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left; /* Text stays left-aligned inside centered container */
}

/* Utility class if not already present */
.sc-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.sc-faq-item {
    background-color: var(--sc-white);
    border: 1px solid var(--sc-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.sc-dark-theme .sc-faq-item {
    background-color: var(--sc-bg-light);
}

.sc-faq-toggle {
    display: none;
}

.sc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--sc-text-main);
    user-select: none;
}

.sc-faq-question:hover {
    background-color: rgba(0, 123, 255, 0.02);
}

.sc-faq-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sc-text-muted);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

body.sc-dark-theme .sc-faq-icon {
    background-color: #2a303c;
}

.sc-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sc-faq-answer-inner {
    overflow: hidden;
}

.sc-faq-answer-inner p {
    padding: 0 30px 25px 30px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--sc-text-muted);
}

/* CSS Magic for Opening/Closing */
.sc-faq-toggle:checked ~ .sc-faq-answer {
    grid-template-rows: 1fr;
}

.sc-faq-toggle:checked ~ .sc-faq-question .sc-faq-icon {
    transform: rotate(45deg);
    background-color: var(--sc-accent);
    color: #111;
}

.sc-faq-toggle:checked ~ .sc-faq-question {
    color: var(--sc-accent);
}

@media (max-width: 768px) {
    .sc-faq-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
    .sc-faq-question { padding: 18px 20px; font-size: 16px; }
}