/* ========================================
   SOCIAL MEDIA MANAGEMENT - SHARED STYLES
   Light Premium Theme
   ======================================== */

:root {
    /* Platform Colors */
    --fb-color: #1877F2;
    --fb-bg: #f0f9ff;

    --insta-color: #E1306C;
    /* Main Pink/Purple */
    --insta-bg: #fff5f8;
    --insta-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);

    --twitter-color: #000000;
    --twitter-bg: #f8fafc;
    /* Very light grey */

    --linkedin-color: #0077b5;
    --linkedin-bg: #f0f7fe;
}

/* Global Spacing Override */
.section-padding {
    padding: 120px 0 !important;
}

/* ========================================
   COMMON HERO SECTION
   ======================================== */
.mgmt-hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background: white;
}

.mgmt-hero.facebook {
    background: linear-gradient(180deg, #f8fcff 0%, var(--fb-bg) 100%);
}

.mgmt-hero.instagram {
    background: linear-gradient(180deg, #fff9fc 0%, var(--insta-bg) 100%);
}

.mgmt-hero.twitter {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.mgmt-hero.linkedin {
    background: linear-gradient(180deg, #fAfDff 0%, var(--linkedin-bg) 100%);
}

.mgmt-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.facebook .mgmt-badge {
    color: var(--fb-color);
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.instagram .mgmt-badge {
    color: var(--insta-color);
    border: 1px solid rgba(225, 48, 108, 0.2);
}

.twitter .mgmt-badge {
    color: var(--twitter-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.linkedin .mgmt-badge {
    color: var(--linkedin-color);
    border: 1px solid rgba(0, 119, 181, 0.2);
}

.mgmt-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 30px;
}

.mgmt-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
}

/* Platform Specific Text Gradients */
.text-gradient-fb {
    background: linear-gradient(90deg, #1877F2, #00C6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-insta {
    background: var(--insta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-twitter {
    background: linear-gradient(90deg, #000000, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-linkedin {
    background: linear-gradient(90deg, #0077b5, #00a0dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Visual Cards (Mockups) */
.mgmt-visual-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    transition: transform 0.4s ease;
}

.mgmt-visual-card:hover {
    text-align: left;
    transform: translateY(-8px);
}

/* ========================================
   ADVANCED FB MOCKUP (DASHBOARD)
   ======================================== */
.fb-dashboard-mockup {
    background: white;
    border-radius: 24px;
    box-shadow: 0 40px 80px -20px rgba(24, 119, 242, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.dash-header {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-sidebar {
    width: 70px;
    background: #f8fafc;
    border-right: 1px solid #f1f5f9;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dash-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
}

.dash-icon.active {
    background: var(--fb-color);
    color: white;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

.dash-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.dash-graph-line {
    height: 5px;
    width: 100%;
    background: #e2e8f0;
    border-radius: 3px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.dash-graph-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--fb-color);
    border-radius: 3px;
    animation: loadGraph 1.5s ease-out forwards 0.5s;
}

@keyframes loadGraph {
    to {
        width: 75%;
    }
}

/* Floating Elements */
.dash-float {
    position: absolute;
    background: white;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatDash 5s ease-in-out infinite;
    z-index: 20;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dash-float-1 {
    top: 25%;
    right: -30px;
    animation-delay: 0s;
}

.dash-float-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes floatDash {

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

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


/* ========================================
   BENTO GRID (SERVICES)
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 32px;
}

.bento-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(24, 119, 242, 0.12);
    border-color: rgba(24, 119, 242, 0.2);
}

.bento-large {
    grid-column: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(24, 119, 242, 0.1);
    /* Visible on colored bg */
    z-index: 0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--fb-color);
    margin-bottom: 24px;
    transition: all 0.3s;
}

.bento-card:hover .bento-icon {
    background: var(--fb-color);
    color: white;
    transform: scale(1.1);
}

.bento-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
}

.bento-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   PIPELINE PROCESS - REDESIGNED
   ======================================== */
.pipeline-wrap {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    margin-top: 60px;
    counter-reset: pipe-counter;
}

.pipeline-step {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    position: relative;
}

.pipeline-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--fb-color);
}

/* Icons */
.p-icon-box {
    width: 70px;
    height: 70px;
    background: var(--fb-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--fb-color);
    transition: all 0.3s;
}

.pipeline-step:hover .p-icon-box {
    background: var(--fb-color);
    color: white;
    transform: rotate(10deg);
}

/* Connector Arrow (Desktop) */
.pipeline-step:not(:last-child)::after {
    content: '\f054';
    /* fa-chevron-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #94a3b8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Typography */
.pipeline-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.pipeline-step p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ========================================
   FAQ OVERRIDES (Platform Specific)
   ======================================== */
.facebook .faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    background: linear-gradient(135deg, #1877F2, #00C6FF) !important;
}

.facebook .faq-accordion .accordion-button:not(.collapsed) {
    color: var(--fb-color) !important;
    background: rgba(24, 119, 242, 0.05) !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .mgmt-hero {
        padding: 120px 0 60px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bento-large {
        grid-column: span 1;
    }

    .pipeline-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .pipeline-step:not(:last-child)::after {
        content: '\f078';
        /* fa-chevron-down */
        right: 50%;
        bottom: -35px;
        top: auto;
        transform: translateX(50%);
    }
}

/* ========================================
   MODERN TIMELINE METHODOLOGY - YATAY TASARIM
   ======================================== */
.methodology-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.method-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #1877F2, #00C6FF);
    border-radius: 50px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.method-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.method-subtext {
    font-size: 1.1rem;
    color: #64748b;
}

/* Timeline Container */
.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 80px;
    padding: 0 20px;
}

/* Gradient Line */
.timeline-line {
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, #1877F2, #00C6FF, #1877F2);
    border-radius: 2px;
    z-index: 1;
}

/* Timeline Item */
.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 320px;
}

/* Number Dot */
.timeline-dot {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1877F2 0%, #00C6FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border: 3px solid rgba(24, 119, 242, 0.2);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.timeline-dot span {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.4);
}

/* Timeline Card */
.timeline-card {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(24, 119, 242, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(24, 119, 242, 0.12);
    border-color: rgba(24, 119, 242, 0.2);
}

.timeline-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(0, 198, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.timeline-card .card-icon i {
    font-size: 1.5rem;
    color: #1877F2 !important;
    display: block;
}

.timeline-card:hover .card-icon {
    background: linear-gradient(135deg, #1877F2, #00C6FF);
    transform: scale(1.1);
}

.timeline-card:hover .card-icon i {
    color: white !important;
}

.timeline-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item {
        max-width: 100%;
    }

    .method-heading {
        font-size: 2rem;
    }
}

/* ========================================
   MGMT SERVICES CARDS
   ======================================== */
.mgmt-card {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    text-align: center;
}

.mgmt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.twitter .mgmt-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.linkedin .mgmt-card:hover {
    border-color: rgba(0, 119, 181, 0.3);
}

.facebook .mgmt-card:hover {
    border-color: rgba(24, 119, 242, 0.3);
}

.instagram .mgmt-card:hover {
    border-color: rgba(225, 48, 108, 0.3);
}

.mgmt-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.twitter .mgmt-icon {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.twitter .mgmt-card:hover .mgmt-icon {
    background: #000;
    color: white;
    transform: scale(1.1);
}

.linkedin .mgmt-icon {
    background: rgba(0, 119, 181, 0.1);
    color: var(--linkedin-color);
}

.linkedin .mgmt-card:hover .mgmt-icon {
    background: var(--linkedin-color);
    color: white;
    transform: scale(1.1);
}

.facebook .mgmt-icon {
    background: rgba(24, 119, 242, 0.1);
    color: var(--fb-color);
}

.facebook .mgmt-card:hover .mgmt-icon {
    background: var(--fb-color);
    color: white;
    transform: scale(1.1);
}

.instagram .mgmt-icon {
    background: rgba(225, 48, 108, 0.1);
    color: var(--insta-color);
}

.instagram .mgmt-card:hover .mgmt-icon {
    background: var(--insta-gradient);
    color: white;
    transform: scale(1.1);
}

.mgmt-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
}

.mgmt-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   MGMT PROCESS (STEP BY STEP)
   ======================================== */
.mgmt-process {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mgmt-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 20px;
    padding: 28px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.mgmt-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.twitter .mgmt-step:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.linkedin .mgmt-step:hover {
    border-color: rgba(0, 119, 181, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.twitter .step-number {
    background: rgba(0, 0, 0, 0.08);
    color: #000;
}

.twitter .mgmt-step:hover .step-number {
    background: #000;
    color: white;
}

.linkedin .step-number {
    background: rgba(0, 119, 181, 0.1);
    color: var(--linkedin-color);
}

.linkedin .mgmt-step:hover .step-number {
    background: var(--linkedin-color);
    color: white;
}

.facebook .step-number {
    background: rgba(24, 119, 242, 0.1);
    color: var(--fb-color);
}

.facebook .mgmt-step:hover .step-number {
    background: var(--fb-color);
    color: white;
}

.instagram .step-number {
    background: rgba(225, 48, 108, 0.1);
    color: var(--insta-color);
}

.instagram .mgmt-step:hover .step-number {
    background: var(--insta-gradient);
    color: white;
}

/* ========================================
   TWITTER SPECIFIC ENHANCEMENTS
   ======================================== */
.twitter .mgmt-visual-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

/* Animated X Logo Background */
.twitter .mgmt-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Dark CTA Section Enhancement */
.twitter .cta-modern {
    position: relative;
    overflow: hidden;
}

.twitter .cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    border-radius: 50%;
}

.twitter .cta-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    border-radius: 50%;
}

/* Stats Badge for Twitter */
.twitter-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.twitter-stat {
    text-align: center;
}

.twitter-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
}

.twitter-stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive for mgmt sections */
@media (max-width: 991px) {
    .mgmt-title {
        font-size: 2.5rem;
    }

    .mgmt-desc {
        font-size: 1.1rem;
    }

    .mgmt-step {
        padding: 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .mgmt-title {
        font-size: 2rem;
    }

    .mgmt-card {
        padding: 25px 20px;
    }

    .mgmt-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* ========================================
   BUTTON HOVER EFFECTS
   ======================================== */
/* Twitter Dark Button */
.twitter .btn-dark {
    background: #000;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.twitter .btn-dark:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    background: #1a1a1a;
}

.twitter .btn-dark:active {
    transform: translateY(-2px) scale(1.01);
}

/* Light Button on Dark Background */
.twitter .btn-light {
    background: #fff;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.twitter .btn-light:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.25), 0 0 30px rgba(255, 255, 255, 0.15);
    background: #fff;
}

.twitter .btn-light:active {
    transform: translateY(-2px) scale(1.01);
}

/* LinkedIn Button */
.linkedin .btn-primary {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.linkedin .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 119, 181, 0.4);
}

.linkedin .btn-light {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.linkedin .btn-light:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.25);
}

/* General btn-xl size */
.btn-xl {
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================
   TWITTER PROCESS SECTION - REDESIGNED
   ======================================== */
.twitter-process-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.twitter-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
}

/* Process Label */
.process-label {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #000;
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Process Title */
.process-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.process-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 500px;
}

/* Process Stats */
.process-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Twitter Timeline */
.twitter-timeline {
    position: relative;
    margin-top: 60px;
}

.timeline-track {
    position: absolute;
    top: 100px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, #e2e8f0 0%, #000 50%, #e2e8f0 100%);
    border-radius: 2px;
    z-index: 0;
}

/* Twitter Step Card */
.twitter-step-card {
    background: white;
    border-radius: 24px;
    padding: 35px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.twitter-step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.15);
}

/* Step Icon Box */
.step-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: all 0.4s ease;
}

.step-icon-box i {
    font-size: 1.8rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.twitter-step-card:hover .step-icon-box {
    background: #000;
    transform: scale(1.08);
}

.twitter-step-card:hover .step-icon-box i {
    color: white;
}

/* Step Badge */
.step-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #000;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Typography */
.twitter-step-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.twitter-step-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Step Tags (Hashtags) */
.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.step-tags span {
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.05);
    color: #475569;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.twitter-step-card:hover .step-tags span {
    background: rgba(0, 0, 0, 0.08);
    color: #1e293b;
}

/* Responsive */
@media (max-width: 991px) {
    .twitter-process-section {
        padding: 80px 0;
    }

    .process-title {
        font-size: 2.2rem;
    }

    .process-stats {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
    }

    .timeline-track {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-stats {
        justify-content: center;
    }

    .stat-item {
        padding: 15px 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* ========================================
   TWITTER FAQ SECTION
   ======================================== */
.twitter-faq-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.05);
    color: #1e293b;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.twitter-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.twitter-faq-item {
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.twitter-faq-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.twitter-faq-item.active {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 1.2rem;
    color: #1e293b;
}

.twitter-faq-item.active .faq-icon {
    background: #000;
}

.twitter-faq-item.active .faq-icon i {
    color: #fff;
}

.faq-question h4 {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 0.85rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.twitter-faq-item.active .faq-toggle {
    background: #000;
    transform: rotate(45deg);
}

.twitter-faq-item.active .faq-toggle i {
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out, padding 0.4s ease;
}

.twitter-faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 28px 24px 94px;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {
    .twitter-faq-section {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 18px 20px;
        gap: 12px;
    }

    .faq-icon {
        width: 42px;
        height: 42px;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 74px;
    }
}