/* Combined CSS for all LeadXcel Service and Leadership Pages - Final Version with Larger Diagrams */

/* =====================================================
   HERO SECTIONS (COMMON FOR ALL PAGES)
   ===================================================== */
.hero-wrap {
    background: linear-gradient(135deg, #667eea 0%, #5423c6 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Leadership page hero label */
.hero-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   BREADCRUMB SECTION (MINIMAL)
   ===================================================== */
.breadcrumb-section {
    padding: 12px 0;
    background: transparent;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: var(--text-secondary);
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #cbd5e1;
    font-weight: 300;
}

.breadcrumb-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

/* =====================================================
   INTRODUCTION SECTIONS (COMMON)
   ===================================================== */
.intro-section {
    padding: 100px 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.intro-content>p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.intro-content>p:last-of-type {
    margin-bottom: 40px;
}

/* Benefits sections (all service pages) */
.abm-benefits,
.nurturing-benefits,
.syndication-benefits,
.outreach-benefits,
.qualification-benefits,
.data-benefits,
.enrichment-benefits,
.intelligence-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #5423c6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i,
.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke-width: 2;
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-text p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* =====================================================
   INTRO VISUALS AND DIAGRAMS (LARGER SIZE WITH FLOATING ANIMATIONS)
   ===================================================== */
.intro-visual {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 600px !important;
    padding: 40px !important;
}

/* All diagram containers - INCREASED SIZE */
.abm-diagram,
.nurturing-diagram,
.syndication-diagram,
.outreach-diagram,
.qualification-diagram,
.data-diagram,
.enrichment-diagram,
.intelligence-diagram,
.vision-diagram {
    position: relative !important;
    width: 600px !important;
    height: 600px !important;
    margin: 0 auto !important;
    overflow: visible !important;
}

.diagram-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
}

/* INCREASED main circle size */
.main-circle {
    width: 200px !important;
    height: 200px !important;
    background: linear-gradient(135deg, #667eea, #5423c6);
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem !important;
    line-height: 1.3;
    z-index: 2;
}

/* INCREASED satellite size */
.satellite {
    width: 120px !important;
    height: 120px !important;
    background: white;
    color: var(--text-primary);
    border: 2px solid #e5e7eb;
    box-shadow: var(--shadow-md);
    z-index: 1;
    pointer-events: none !important;
    cursor: default !important;
    user-select: none !important;
}

/* INCREASED icon and text sizes */
.satellite i,
.satellite svg {
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 8px !important;
    color: #667eea;
    stroke-width: 2;
    pointer-events: none !important;
}

.satellite span {
    font-size: 1rem !important;
    line-height: 1.2;
    pointer-events: none !important;
}

/* Updated positioning for larger satellites */
.satellite:nth-child(2) {
    top: 4% !important;
    left: 50% !important;
}

.satellite:nth-child(3) {
    top: 12% !important;
    right: 4% !important;
}

.satellite:nth-child(4) {
    top: 50% !important;
    right: 0% !important;
}

.satellite:nth-child(5) {
    bottom: 12% !important;
    right: 4% !important;
}

.satellite:nth-child(6) {
    bottom: 4% !important;
    left: 50% !important;
}

.satellite:nth-child(7) {
    bottom: 12% !important;
    left: 4% !important;
}

.satellite:nth-child(8) {
    top: 50% !important;
    left: 0% !important;
}

/* =====================================================
   FLOATING ANIMATIONS FOR SATELLITES (RESTORED)
   ===================================================== */

/* Define floating animation keyframes */
@keyframes float {

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

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

@keyframes float-right {

    0%,
    100% {
        transform: translateY(-50%) translateX(0px);
    }

    50% {
        transform: translateY(-65%) translateX(0px);
    }
}

@keyframes float-right-corner {

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

    50% {
        transform: translateY(-15px) translateX(0);
    }
}

@keyframes float-left {

    0%,
    100% {
        transform: translateY(-50%) translateX(0px);
    }

    50% {
        transform: translateY(-65%) translateX(0px);
    }
}

@keyframes float-left-corner {

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

    50% {
        transform: translateY(-15px) translateX(0);
    }
}

@keyframes float-center {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }

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

/* Apply animations to satellites with staggered delays */
.satellite:nth-child(2) {
    animation: float-center 4s ease-in-out infinite;
    animation-delay: 0s;
}

.satellite:nth-child(3) {
    animation: float-right-corner 4s ease-in-out infinite;
    animation-delay: 0.8s;
}

.satellite:nth-child(4) {
    animation: float-right 4s ease-in-out infinite;
    animation-delay: 1.6s;
}

.satellite:nth-child(5) {
    animation: float-right-corner 4s ease-in-out infinite;
    animation-delay: 2.4s;
}

.satellite:nth-child(6) {
    animation: float-center 4s ease-in-out infinite;
    animation-delay: 3.2s;
}

.satellite:nth-child(7) {
    animation: float-left-corner 4s ease-in-out infinite;
    animation-delay: 4s;
}

.satellite:nth-child(8) {
    animation: float-left 4s ease-in-out infinite;
    animation-delay: 4.8s;
}

/* Remove hover effects completely while keeping animations */
.satellite:hover,
.satellite:focus,
.satellite:active {
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
    background: white !important;
    border-color: #e5e7eb !important;
    animation-play-state: running !important;
}

/* Disable touch interactions on mobile */
@media (hover: none) and (pointer: coarse) {

    .satellite,
    .satellite * {
        pointer-events: none !important;
        touch-action: none !important;
    }
}

/* =====================================================
   SECTION HEADERS (COMMON)
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =====================================================
   PROBLEM SECTIONS (ALL PAGES)
   ===================================================== */
.problem-section {
    padding: 80px 0;
    background: #f8fafc;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: #ef4444;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.problem-icon i,
.problem-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

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

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================================================
   SOLUTION/STATS SECTIONS (ALL PAGES)
   ===================================================== */
.solution-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.stat-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-left: 4px;
}

.stat-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =====================================================
   FRAMEWORK SECTIONS (ALL PAGES)
   ===================================================== */
.framework-section {
    padding: 80px 0;
    background: #f8fafc;
}

.framework-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    max-width: 200px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea, #5423c6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid white;
    z-index: 2;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #667eea, #5423c6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    position: relative;
}

.step-icon i,
.step-icon svg {
    width: 36px;
    height: 36px;
    color: white;
    stroke-width: 2;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-connector {
    height: 2px;
    background: linear-gradient(90deg, #667eea, #5423c6);
    flex-grow: 1;
    margin: 0 20px;
    position: relative;
    top: -36px;
}

/* MQL-HQL-SQL specific - 3-stage layout */
.framework-steps.three-stage {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.framework-steps.three-stage .step-item {
    max-width: 280px;
}

/* =====================================================
   CASE STUDY SECTIONS (ALL PAGES)
   ===================================================== */
.case-study-section {
    padding: 80px 0;
    background: white;
}

.case-study-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid #e5e7eb;
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-header {
    text-align: center;
    margin-bottom: 40px;
}

.case-study-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.case-study-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.case-study-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}

.case-study-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.result-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
}

.result-stat {
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* =====================================================
   RESPONSIVE DESIGN (ALL PAGES) - UPDATED FOR LARGER DIAGRAMS
   ===================================================== */
@media (max-width: 1200px) {

    .abm-diagram,
    .nurturing-diagram,
    .syndication-diagram,
    .outreach-diagram,
    .qualification-diagram,
    .data-diagram,
    .enrichment-diagram,
    .intelligence-diagram,
    .vision-diagram {
        width: 500px !important;
        height: 500px !important;
    }

    .main-circle {
        width: 170px !important;
        height: 170px !important;
        font-size: 1.2rem !important;
    }

    .satellite {
        width: 100px !important;
        height: 100px !important;
    }

    .satellite i,
    .satellite svg {
        width: 26px !important;
        height: 26px !important;
        margin-bottom: 6px !important;
    }

    .satellite span {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .abm-diagram,
    .nurturing-diagram,
    .syndication-diagram,
    .outreach-diagram,
    .qualification-diagram,
    .data-diagram,
    .enrichment-diagram,
    .intelligence-diagram,
    .vision-diagram {
        width: 450px !important;
        height: 450px !important;
    }

    .main-circle {
        width: 150px !important;
        height: 150px !important;
        font-size: 1.1rem !important;
    }

    .satellite {
        width: 90px !important;
        height: 90px !important;
    }

    .satellite i,
    .satellite svg {
        width: 24px !important;
        height: 24px !important;
        margin-bottom: 6px !important;
    }

    .satellite span {
        font-size: 0.875rem !important;
    }

    .framework-steps {
        flex-direction: column !important;
        gap: 40px;
    }

    .step-connector {
        height: 40px;
        width: 2px;
        margin: 0 auto !important;
        top: 0 !important;
        transform: rotate(90deg);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .case-study-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .leader-spotlight {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .intro-content h2 {
        font-size: 1.75rem;
    }

    .case-study-card {
        padding: 32px 24px;
    }

    /* Diagrams responsive */
    .abm-diagram,
    .nurturing-diagram,
    .syndication-diagram,
    .outreach-diagram,
    .qualification-diagram,
    .data-diagram,
    .enrichment-diagram,
    .intelligence-diagram,
    .vision-diagram {
        width: 350px !important;
        height: 350px !important;
    }

    .intro-visual {
        min-height: 450px !important;
        padding: 30px !important;
    }

    .main-circle {
        width: 120px !important;
        height: 120px !important;
        font-size: 1rem !important;
    }

    .satellite {
        width: 80px !important;
        height: 80px !important;
    }

    .satellite i,
    .satellite svg {
        width: 20px !important;
        height: 20px !important;
        margin-bottom: 4px !important;
    }

    .satellite span {
        font-size: 0.75rem !important;
    }

    .leader-spotlight {
        padding: 40px 32px;
    }

    .leader-name {
        font-size: 2rem;
    }

    .leader-image {
        width: 200px;
        height: 200px;
    }

    .breadcrumb-list {
        font-size: 0.8rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }


    .intro-content h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 16px;
    }

    .problem-card,
    .stat-card {
        padding: 32px 24px;
    }

    .case-study-card {
        padding: 24px 20px;
    }

    .abm-diagram,
    .nurturing-diagram,
    .syndication-diagram,
    .outreach-diagram,
    .qualification-diagram,
    .data-diagram,
    .enrichment-diagram,
    .intelligence-diagram,
    .vision-diagram {
        width: 280px !important;
        height: 280px !important;
    }

    .intro-visual {
        min-height: 350px !important;
        padding: 20px !important;
    }

    .main-circle {
        width: 100px !important;
        height: 100px !important;
        font-size: 0.9rem !important;
    }

    .satellite {
        width: 70px !important;
        height: 70px !important;
    }

    .satellite i,
    .satellite svg {
        width: 18px !important;
        height: 18px !important;
        margin-bottom: 3px !important;
    }

    .satellite span {
        font-size: 0.7rem !important;
    }

    .leader-spotlight {
        padding: 32px 24px;
    }

    .leader-name {
        font-size: 1.75rem;
    }

    .leader-image {
        width: 180px;
        height: 180px;
    }

    .expertise-tags {
        justify-content: center;
    }

    .leader-social {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .breadcrumb-section {
        padding: 8px 0;
    }

    .breadcrumb-list {
        font-size: 0.75rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 6px;
    }
}