/* ========================================
   INFLUENCER_DETAIL.CSS - Influencer Profile Page Styles
   Global styles moved to base.css
   ======================================== */

/* ========================================
   SUCCESS TOAST NOTIFICATION
   ======================================== */
.success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.success-toast.closing {
    animation: slideOutRight 0.3s ease-in forwards;
}

.toast-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 400px;
    min-width: 320px;
}

.toast-icon-wrapper {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-icon {
    width: 28px;
    height: 28px;
}

.toast-icon.checkmark,
.toast-icon.spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.toast-icon.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.toast-text {
    flex: 1;
}

.toast-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-text p {
    font-size: 0.875rem;
    opacity: 0.95;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.toast-close:hover {
    opacity: 1;
}

.toast-close:focus,
.toast-close:focus-visible,
.toast-close:active {
    outline: none;
}

/* ========================================
   INFLUENCER HEADER
   ======================================== */
.influencer-header {    
    position: relative;
}

.influencer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-light), transparent);
}

.header-content {
    background: #fff;
    padding: 0px;
    border-radius: 20px;
    margin: 0 0 20px 0;
    position: relative;
    overflow: hidden;
}

.header-banner {
    position: relative;
    height: 150px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.header-banner img {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.header-content-wrapper {
    padding: 0 20px 20px 20px;
    display: flex;
    gap: 20px;
}

.influencer-avatar-large {
    margin-top: -70px;
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 4px solid var(--bg-white);
    position: relative;
    transition: transform 0.3s ease;
}

.influencer-avatar-large:hover {
    transform: scale(1.02);
}

.influencer-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #979797 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder-large span {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.influencer-header-info-wrapper {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 150px);
    padding: 10px 0 0 0;
    gap: 10px;
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: var(--text-secondary);
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    letter-spacing: 0.3px;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    gap: 1rem;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Button Icon Styling */
.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.btn-large .btn-icon {
    width: 18px;
    height: 18px;
    margin-left: 0.625rem;
}

.hero-content {
    margin: 1.25rem 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem;
    line-height: 1.65;
    font-weight: 400;
    max-width: 600px;
}

/* ========================================
   MOBILE APP ACCESS SECTION
   ======================================== */
.mobile-app-access-section {
    padding: 20px 20px 20px 0px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: 180px;
    width: calc(100% - 180px);
}

.mobile-app-message {
    margin: 0;
    line-height: 1.5;
}

.access-code-compact {
    background: var(--bg-lighter);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    border: 1px solid var(--border-light);
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

.app-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: var(--bg-lighter);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.app-link:hover {
    background: var(--accent-dark);
    color: white;
    border-color: var(--accent-dark);
}

.app-link svg {
    display: block;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-content,
.posts-wrapper {
    background: #fff;
    padding: 0px;
    border-radius: 20px;
    margin: 0 0 20px 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.pattern-bg {
    left: 0;
    top: 50%;
    width: 100%;
    z-index: 0;
    position: absolute;
    opacity: 0.05;
    transform: translateY(-50%);
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffc600 0%, rgb(190 112 7) 100%);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-top: 0;
    text-align: left;
}

.about-text p {
    margin-bottom: 1.25rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.text-muted {
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   INFLUENCER POSTS
   ======================================== */
.influencer-posts-wrapper {
    display: flex;
    margin-left: -10px;
    width: calc(100% + 20px);
    flex-wrap: wrap;
    align-items: flex-start;
}

.influencer-posts-wrapper .each-col {
    width: calc(33.33% - 20px);
    margin: 0 10px;
    display: flex;
    flex-wrap: wrap;
}

.influencer-posts-wrapper .each-col .sub-col {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.influencer-posts-wrapper a {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 600px;
}

.influencer-posts-wrapper a img {
    min-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
}

.influencer-posts-wrapper a.very-small {
    height: 200px;
}

.influencer-posts-wrapper a.small {
    height: 400px;
}

.influencer-posts-wrapper a .text-section {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    z-index: 1;
    max-height: 100%;
    overflow: auto;
}

.influencer-posts-wrapper a .overlay-section {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff;
    z-index: 2;
    max-height: 0;
    overflow: hidden;
    transition: all ease-in-out 300ms;
    text-align: center;
}

.influencer-posts-wrapper a:hover .overlay-section {
    max-height: 100%;
    bottom: 0;
}

/* ========================================
   VIDEO SESSIONS SECTION
   ======================================== */
.video-sessions {
    padding: 4.5rem 0;
    background: linear-gradient(to bottom, var(--bg-lighter) 0%, #f8f9fa 100%);
}

.featured-videos-section {
    padding: 4.5rem 0;
    background: linear-gradient(to bottom, var(--bg-lighter) 0%, #f8f9fa 100%);
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.sessions-grid,
.video-sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.session-card,
.video-session-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
    border: 1px solid var(--border-light);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
}

.session-card:hover,
.video-session-card:hover {
    transform: translateY(-6px) translateZ(0);
    -webkit-transform: translateY(-6px) translateZ(0);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.session-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: var(--bg-light);
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    flex-shrink: 0;
}

.session-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.video-session-card:hover .session-thumbnail img {
    transform: scale(1.05) translateZ(0);
    -webkit-transform: scale(1.05) translateZ(0);
    filter: brightness(0.85);
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.video-session-card:hover .play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease;
    cursor: pointer;
}

.video-session-card:hover .play-button {
    transform: scale(1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
    margin-left: 3px; /* Slight offset to center the play icon visually */
}

.thumbnail-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    z-index: 1;
}

.thumbnail-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    pointer-events: none;
}

.video-session-card:hover .thumbnail-placeholder svg {
    opacity: 0.8;
    transform: scale(1.05) translateZ(0);
    -webkit-transform: scale(1.05) translateZ(0);
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-dark);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.session-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.session-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.session-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.session-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.375rem 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 500;
}

.session-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.meta-icon {
    width: 16px;
    height: 16px;
}

/* Empty States */
.empty-sessions {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    margin-top: 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-sessions h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-sessions p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #1a202c 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.cta-text p {
    margin-bottom: 1rem;
}

.cta-text p:last-child {
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--accent-dark);
    font-weight: 600;
    padding: 0.875rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--border-light);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0.25rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-light);
}

.modal-close:focus,
.modal-close:focus-visible,
.modal-close:active {
    outline: none;
}

.modal-body {
    padding: 2.5rem;
}

/* Plans Grid in Modal */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--bg-lighter);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-dark);
}

.plan-card.popular {
    border-color: var(--accent-dark);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-dark);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.plan-price {
    text-align: center;
    margin: 1.5rem 0 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
}

.plan-features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-dark);
    margin-top: 0.1rem;
}

.plan-action {
    margin-top: auto;
}

.btn-plan-select {
    width: 100%;
    background: var(--accent-dark);
    color: white;
    border: none;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-plan-select:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-plan-select:focus,
.btn-plan-select:focus-visible,
.btn-plan-select:active {
    outline: none;
}

.plan-card.popular .btn-plan-select {
    background: var(--accent-dark);
}

.plan-card.popular .btn-plan-select:hover {
    background: var(--accent-hover);
}

.no-plans {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.no-plans p {
    font-size: 1.05rem;
    margin: 0;
}

/* ========================================
   MODERN HERO SECTION
   ======================================== */
.influencer-hero-modern {
    position: relative;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    overflow: hidden;
    padding: 3rem 0 2.5rem;
    margin-top: 73px;
}

/* Subtle dot pattern overlay */
.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
}

/* Accent line at top */
.influencer-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #10b981 100%);
    z-index: 1;
}

.influencer-hero-modern .container {
    position: relative;
    z-index: 2;
}

/* Left section with avatar */
.hero-left-section {
    flex-shrink: 0;
}

.influencer-avatar-modern {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: visible;
}

/* Animated ring around avatar */
.avatar-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #10b981 100%);
    animation: rotate-ring 8s linear infinite;
    z-index: 0;
}

@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.influencer-avatar-modern img,
.avatar-placeholder-modern {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg-white);
    background: var(--bg-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.avatar-placeholder-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder-modern span {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

/* Right section with info */
.hero-right-section {
    flex: 1;
    min-width: 0;
}

/* Badge group */
.hero-badge-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-badge-modern,
.subscriber-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.category-badge-modern {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.subscriber-badge-modern svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.category-badge-modern:hover,
.subscriber-badge-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Title */
.influencer-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-description-modern {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    max-width: 600px;
}

.hero-description-modern p {
    margin: 0;
}

/* Glass card effect for the whole hero on scroll (optional) */
.influencer-hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: radial-gradient(circle at center top, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
    position: relative;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon-wrapper .stat-icon {
    width: 40px;
    height: 40px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ========================================
   SKILLS SECTION
   ======================================== */
.skills-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-card:hover::after {
    transform: scaleX(1);
}

.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.skill-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
    transform: rotate(0deg) scale(1.05);
}

.skill-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.skill-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.skill-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   OFFERINGS SECTION
   ======================================== */
.offerings-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.offerings-grid {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offering-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.offering-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: #667eea;
    background: var(--bg-white);
}

.offering-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.offering-item:hover .offering-icon {
    transform: scale(1.1) rotate(5deg);
}

.offering-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.offering-content {
    flex: 1;
}

.offering-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.offering-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar svg {
    width: 28px;
    height: 28px;
    color: white;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

/* ========================================
   DOWNLOAD APP BANNER
   ======================================== */
.download-app-banner {
    background: rgba(255, 198, 0, 0.1);
    box-shadow: 0 0 2px #ffc600;
    border-radius: 10px;
    padding: 20px 20px 20px 15px;
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
    gap: 10px;
}

.download-app-banner .download-btns {
    display: flex;
    gap: 10px;
}

.download-app-banner .download-btns a {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    padding: 7px;
    border-radius: 5px;
    line-height: normal;
    gap: 10px;
    font-size: 14px;
    white-space: nowrap;
}

.download-app-banner .download-btns a svg {
    width: 20px;
    height: 20px;
}

.download-app-banner .download-btns a.app-store svg {
    width: 25px;
    height: 25px;
}

.download-app-banner .download-btns a .small-text {
    font-size: 8px;
}

.download-app-banner .left-section {
    display: flex;
    align-items: center;
}

.download-app-banner .left-section svg {
    width: 45px;
    height: 45px;
    min-width: 45px;
}

.download-app-banner a {
    color: inherit;
}

.download-app-banner .text-section {
    padding-left: 10px;
}

.download-app-banner strong {
    color: #000;
    display: block;
}

.download-app-banner p {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    line-height: normal;
}

.download-app-banner .code {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.download-app-banner .code span {
    background: rgba(255,255,255,0.5);
    border-radius: 5px;
    border: solid 1px #ffc600;
    margin: 2px 5px  2px 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    line-height: normal;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1100px) {
    .download-app-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .download-app-banner .download-btns {
        padding-left: 50px;
    }
}

@media (max-width: 800px) {
    .download-app-banner .left-section svg {
        display: none;
    }
    .download-app-banner .download-btns {
        padding-left: 00px;
    }
    .download-app-banner .text-section {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .influencer-header-info-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .influencer-posts-wrapper {
        flex-wrap: wrap;
    }

    .influencer-posts-wrapper .each-col {
        width: calc(50% - 20px);
    }

    .influencer-posts-wrapper .each-col:last-child {
        width: 100%;
        margin: 0;
        align-items: flex-start;
    }

    .influencer-posts-wrapper .each-col:last-child .sub-col a {
        width: 100%;
        margin: 10px;
    }

    .influencer-posts-wrapper .each-col .sub-col {
        width: 50%;
        align-items: flex-start;
    }

    .success-toast {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .toast-content {
        min-width: auto;
        padding: 1rem 1.25rem;
    }

    .toast-icon {
        width: 24px;
        height: 24px;
    }

    .toast-text strong {
        font-size: 0.95rem;
    }

    .toast-text p {
        font-size: 0.8rem;
    }

    /* Modern hero responsive */
    .influencer-hero-modern {
        padding: 2rem 0 1.75rem;
        margin-top: 65px;
    }

    .influencer-avatar-modern {
        width: 130px;
        height: 130px;
    }

    .influencer-avatar-modern img,
    .avatar-placeholder-modern {
        width: 130px;
        height: 130px;
    }

    .avatar-placeholder-modern span {
        font-size: 2.75rem;
    }

    .hero-badge-group {
        justify-content: center;
    }

    .influencer-title-modern {
        font-size: 2rem;
    }

    .hero-description-modern {
        font-size: 1rem;
    }

    /* Old styles for backward compatibility */
    .influencer-avatar-large {
        width: 140px;
        height: 140px;
    }

    .avatar-placeholder-large span {
        font-size: 3rem;
    }

    .influencer-title {
        font-size: 2rem;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .btn-large .btn-icon {
        width: 16px;
        height: 16px;
    }

    .sessions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .modal-content {
        max-width: 95%;
        margin: 1rem;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mobile-app-access-section {
        padding: 0.625rem 0;
        gap: 0.5rem;
    }

    .mobile-app-message {
        font-size: 0.8125rem;
    }

    .access-code-compact {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Responsive for new sections */
    .section-title-center {
        font-size: 2rem;
    }

    .section-subtitle-center {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .stats-section,
    .skills-section,
    .offerings-section,
    .testimonials-section {
        padding: 3.5rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

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

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offering-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .offering-icon {
        width: 45px;
        height: 45px;
    }

    .offering-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 550px) {
    .influencer-posts-wrapper .each-col {
        width: calc(100% - 20px);
    }
    .influencer-posts-wrapper .each-col .sub-col {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-content-wrapper {
        flex-direction: column;
        gap: 0;
    }

    /* Modern hero mobile */
    .influencer-hero-modern {
        padding: 1.75rem 0 1.5rem;
        margin-top: 65px;
    }

    .header-content {
        gap: 1.25rem;
    }

    .influencer-avatar-modern {
        width: 110px;
        height: 110px;
    }

    .influencer-avatar-modern img,
    .avatar-placeholder-modern {
        width: 110px;
        height: 110px;
    }

    .avatar-placeholder-modern span {
        font-size: 2.5rem;
    }

    .influencer-title-modern {
        font-size: 1.75rem;
    }

    .hero-description-modern {
        font-size: 0.95rem;
    }

    /* Old styles */
    .influencer-header {
        padding: 2.5rem 0 2rem;
    }

    .influencer-avatar-large {
        width: 140px;
        height: 140px;
    }

    .avatar-placeholder-large span {
        font-size: 3rem;
    }

    .influencer-title {
        font-size: 2rem;
    }
    
    .header-actions .btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .btn-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .btn-large .btn-icon {
        width: 16px;
        height: 16px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .mobile-app-access-section {
        padding: 0.5rem 0;
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .mobile-app-message {
        font-size: 0.8125rem;
    }

    .access-code-compact {
        font-size: 0.8125rem;
        padding: 0.375rem 0.625rem;
    }
    
    /* Responsive for new sections */
    .section-title-center {
        font-size: 1.75rem;
    }

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

    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .stat-icon-wrapper .stat-icon {
        width: 35px;
        height: 35px;
    }

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

    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}