/* ===========================================
   NEW STYLES FOR FEEDBIRD-INSPIRED REDESIGN
   =========================================== */

/* Hero Section - Scrolling Showcase */
.hero-visual-scrolling {
    position: relative;
    height: 600px;
    overflow: visible;
    padding: 0 20px;
}

.scrolling-showcase {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.showcase-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollUp 20s linear infinite;
}

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

.showcase-card {
    flex-shrink: 0;
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.showcase-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 15px 20px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    background: white;
}

.showcase-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Client Logos Section */
.clients-section {
    padding: 60px 0;
    background: #FFF9F8;
    overflow: hidden;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.clients-label {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: slideLeft 12s linear infinite;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    mix-blend-mode: multiply;
}

/* Instagram Style Gallery */
.gallery-section-new {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.industry-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    background: #F5F5F5;
    padding: 16px;
    border-radius: 15px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #F3F4F6;
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.insta-post {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

.insta-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8A82 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
}

.profile-pic.circular-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
}

.insta-more {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-primary);
}

.insta-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #FFE5E2 0%, #FFD1CC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-color);
}

.insta-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

.action-left {
    display: flex;
    gap: 15px;
}

.action-icon {
    width: 22px;
    height: 22px;
    stroke: #F5655A;
    stroke-width: 2;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.insta-actions span {
    font-size: 20px;
    cursor: pointer;
}

/* Service Plans with Progress Bar */
.pricing-plans-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.plan-card-new {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card-new:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--bg-light);
    color: var(--text-secondary);
}

.plan-title-new {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.plan-price-new {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.plan-period {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.quantity-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quantity-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Support Bar */
.support-bar {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 30px 40px;
    border-radius: 15px;
    margin: 80px auto;
    max-width: 1100px;
    text-align: center;
    border-left: 4px solid #3B82F6;
}

.support-bar p {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0;
}

.support-bar strong {
    color: #3B82F6;
}

/* Video Testimonial */
/* Video Carousel */
.video-carousel-container {
    position: relative;
    margin: 40px 0 60px;
    padding: 0 60px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E0E0E0;
    font-size: 28px;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(245, 101, 90, 0.3);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.video-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.video-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.video-card {
    flex: 0 0 calc(33.333% - 14px);
    aspect-ratio: 9/16;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 101, 90, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-left: 4px;
}

.video-play-overlay:hover {
    background: rgba(245, 101, 90, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-testimonial {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

/* Process with Tabs */
.process-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
    background: #F5F5F5;
    padding: 16px;
    border-radius: 15px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #F3F4F6;
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
    background: white;
    padding: 32px;
    border-radius: 15px;
    transition: box-shadow 0.3s ease;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-content:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Results with Graphics - Redesigned */
.results-graphic-section {
    padding: var(--section-padding);
    background: white;
}

.results-cards-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.result-card-new {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Card Badge */
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EFF6FF;
    color: #1E40AF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.card-badge.warning {
    background: #FEF2F2;
    color: #DC2626;
}

.card-badge svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.result-card-new h3 {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

/* Creative Card - Top 1% Talent */
.creative-card {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border: none;
}

.wave-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='dots' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='2' fill='white' opacity='0.4'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23dots)'/%3E%3C/svg%3E");
    opacity: 0.8;
    pointer-events: none;
}

.creative-visual {
    position: relative;
    z-index: 1;
}

.designer-profiles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.designer-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.designer-mini .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.designer-mini .info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.designer-mini .info strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.designer-mini .info span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Goodbye Card - Problems */
.goodbye-card {
    background: #FEF2F2;
    border: none;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.problem-item.highlight {
    background: #DC2626;
    color: white;
}

.problem-item .x-icon {
    width: 20px;
    height: 20px;
    stroke: #DC2626;
    stroke-width: 2;
    flex-shrink: 0;
}

.problem-item.highlight .x-icon {
    stroke: white;
}

/* Collaboration Card - Chat */
.collab-card {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
}

.chat-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chat-message.sent {
    flex-direction: row;
}

.chat-message.received {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.chat-message.received .message-avatar {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.message-content {
    flex: 1;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    max-width: 80%;
    transition: box-shadow 0.3s ease;
}

.message-content:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.message-content strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.message-content p {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

.message-content .time {
    font-size: 11px;
    color: var(--text-secondary);
    display: block;
    margin-top: 6px;
}

/* Subscription Card - Calendar */
.subscription-card {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: none;
}

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

.calendar-mini {
    background: white;
    padding: 16px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.calendar-mini:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.calendar-header {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E5E7EB;
}

.calendar-header .month {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-grid .day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.calendar-grid .day.active {
    background: #3B82F6;
    color: white;
    font-weight: 700;
}

.subscription-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sub-badge svg {
    stroke-width: 2;
}

/* FAQ Two Column Layout */
.faq-two-column {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-list-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item-compact {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question-compact {
    width: 100%;
    padding: 18px 25px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-question-compact:hover {
    background: var(--bg-light);
}

.faq-answer-compact {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item-compact.active .faq-answer-compact {
    max-height: 300px;
    padding: 0 25px 18px 25px;
}

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-cta-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.sidebar-cta-card h3 {
    font-family: var(--font-title);
    font-size: 20px;
    margin-bottom: 15px;
}

.sidebar-cta-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-plans-new {
        grid-template-columns: 1fr;
    }
    
    .results-cards {
        grid-template-columns: 1fr;
    }
    
    .result-card-graphic {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-two-column {
        grid-template-columns: 1fr;
    }
    
    .clients-track {
        gap: 40px;
    }
    
    .client-logo {
        height: 30px;
    }
    
    .hero-visual-scrolling {
        padding: 0 10px;
    }
}