* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, system-ui, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e0e7ff 100%);
    min-height: 100vh;
    color: #1e293b;
    overflow-x: hidden;
}

.landing-container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, #f0f4ff 0%, #faf5ff 30%, #ffffff 60%, #faf5ff 85%, #f0f4ff 100%);
}

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 4px 20px rgba(0, 0, 0, 0.02);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    animation: headerSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes headerSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-100%) translateZ(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 23px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.logo-icon-landing {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 19px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.logo-text {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-cta-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    position: relative;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.nav-cta-btn:hover:not(.btn-loading) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.4);
}

.nav-login-btn {
    padding: 12px 24px;
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-login-btn:hover {
    color: #6366f1;
    border-color: #a5b4fc;
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-1px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero-content {
    max-width: 1100px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.title-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 25%, #6366f1 50%, #7c3aed 75%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    background-size: 200% auto;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #64748b;
    margin-bottom: 56px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta {
    padding: 20px 48px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.35);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    min-width: 280px;
}

/* Button loading states */
.btn-loading {
    position: relative;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.15s ease;
    color: transparent !important;
    text-shadow: none !important;
}

.btn-loading > *:not(.btn-loading-spinner) {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.btn-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 3.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    border-top-color: white;
    border-right-color: white;
    animation: spin 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    opacity: 1 !important;
    z-index: 1;
}

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

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:hover:not(.btn-loading) {
    transform: translateY(-3px);
    box-shadow: 0 14px 54px rgba(99, 102, 241, 0.45);
}

.secondary-cta {
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #6366f1;
    border: 2px solid #6366f1;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.secondary-cta:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

/* Case Study Section */
.case-study-section {
    padding: 80px 40px;
    background: transparent;
    position: relative;
}

.case-study-carousel {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.case-study-carousel::-webkit-scrollbar {
    display: none;
}

.case-study-track {
    display: flex;
}

.case-study-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    justify-content: center;
}

.case-study-container {
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.case-study-section .section-title {
    max-width: 900px;
}

.case-study-section .section-title .highlight-before {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ef4444 !important;
    background-clip: unset !important;
    color: #ef4444 !important;
    white-space: nowrap;
}

.case-study-section .section-title .highlight-after {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #22c55e !important;
    background-clip: unset !important;
    color: #22c55e !important;
    white-space: nowrap;
}

.case-study-mockup {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.profile-square-container {
    position: relative;
    width: 550px;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-square-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.profile-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.1;
}

.profile-handle {
    font-size: 1.75rem;
    color: white;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.95;
}

.profile-followers {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}

.phone-mockup-overlay {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.phone-frame {
    background: #1e293b;
    border-radius: 45px;
    padding: 14px;
    position: relative;
    width: 320px;
}

.phone-notch {
    display: none;
}

.phone-screenshot {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

.highlight-before {
    color: #ef4444;
    font-weight: 800;
}

.highlight-after {
    color: #22c55e;
    font-weight: 800;
}

.slide-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 50px;
}

.carousel-arrow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #6366f1;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.carousel-arrow svg {
    width: 32px;
    height: 32px;
}

.carousel-arrow:hover {
    background: #4f46e5;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    transform: none;
    box-shadow: none;
    background: #6366f1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(99, 102, 241, 0.4);
    transform: scale(1.1);
}

.carousel-dot.active {
    background: #6366f1;
    width: 32px;
    border-radius: 6px;
}

/* Responsive adjustments for case study */
@media (max-width: 1200px) {
    .phone-mockup-overlay {
        right: 0;
    }
    
    .phone-frame {
        width: 280px;
    }
}

@media (max-width: 968px) {
    .case-study-mockup {
        max-width: 600px;
    }
    
    .profile-square-container {
        width: 450px;
        height: 450px;
    }
    
    .phone-mockup-overlay {
        right: -20px;
    }
    
    .profile-name {
        font-size: 2.5rem;
    }
    
    .profile-handle {
        font-size: 1.5rem;
    }
    
    .phone-frame {
        width: 260px;
    }
}

@media (max-width: 640px) {
    .case-study-section {
        padding: 60px 0;
    }
    
    .case-study-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .case-study-mockup {
        position: relative;
        max-width: 100%;
        justify-content: flex-start;
        min-height: 320px;
    }
    
    .profile-square-container {
        width: 240px;
        height: 240px;
    }
    
    .profile-overlay {
        bottom: 16px;
        left: 16px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-handle {
        font-size: 1rem;
    }
    
    .profile-followers {
        font-size: 0.85rem;
    }
    
    .phone-frame {
        width: 160px;
        padding: 8px;
        border-radius: 32px;
    }
    
    .phone-mockup-overlay {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .phone-screenshot {
        border-radius: 24px;
    }
    
    .slide-navigation {
        margin-top: 30px;
        gap: 12px;
    }
    
    .carousel-arrow {
        width: 60px;
        height: 60px;
    }
    
    .carousel-arrow svg {
        width: 28px;
        height: 28px;
    }
}

.landing-demo-section {
    padding: 80px 40px;
    background: transparent;
    position: relative;
}

.demo-content {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 25%, #6366f1 50%, #7c3aed 75%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    background-size: 200% auto;
}

.demo-prompt-container {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.demo-prompt-label {
    font-size: 14px;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.demo-prompt-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 2px solid #e0e7ff;
    border-radius: 20px;
    padding: 24px 32px;
    font-size: 22px;
}

.demo-prompt-text.typing::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 2px;
    color: #6366f1;
}

.demo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.demo-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.demo-card.animate-in {
    animation: cardPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardPopIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.demo-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.demo-card-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
    border-color: #c7d2fe;
}

.demo-card-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    padding: 20px;
    border-bottom: 3px solid #8b5cf6;
}

.demo-card-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-card-platform {
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-platform-icon {
    font-size: 1.5rem;
}

.demo-platform-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-card-content {
    padding: 24px 20px;
    flex: 1;
}

.demo-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.demo-card-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.demo-card-fields {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 8px;
    width: fit-content;
}

.demo-field-icon {
    font-size: 0.875rem;
}

.demo-field-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #8b5cf6;
}

.demo-card-footer {
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-card-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.demo-view-details-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.demo-view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.demo-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.demo-cta-button {
    display: flex;
}

.demo-nav-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #8b5cf6;
    font-size: 0.875rem;
    font-weight: 600;
}

.demo-nav-hint svg {
    animation: bounceRight 1.5s ease infinite;
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.demo-card-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-card-modal.active .demo-modal-overlay {
    opacity: 1;
}

.demo-card-modal.active .demo-modal-content {
    opacity: 1;
    transform: scale(1);
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.demo-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.demo-modal-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.25) 100%);
    padding: 40px 32px 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.demo-modal-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.demo-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.demo-modal-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.demo-modal-badge {
    margin: 0 32px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.demo-modal-fields {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-modal-field {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.2s ease;
}

.demo-modal-field:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #c7d2fe;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}

.demo-modal-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.demo-modal-field-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.demo-modal-field-edit {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #6366f1;
    padding: 6px 12px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.demo-modal-field-edit:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.demo-modal-field-content {
    color: #475569;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

.features-section {
    padding: 80px 40px;
    background: transparent;
    position: relative;
}

.features-content {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.9),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: left;
}

.feature-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-glass-card:hover::before {
    opacity: 1;
}

.feature-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.9),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 25%, #6366f1 50%, #7c3aed 75%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    background-size: 200% auto;
}

.beta-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
    -webkit-text-fill-color: white;
    background-clip: padding-box;
    letter-spacing: 0.5px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.feature-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-arrow {
    color: #6366f1;
    font-size: 24px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-glass-card:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Trending Live Section */
.trending-live-section {
    padding: 80px 40px;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.trending-live-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trending-mockup {
    position: relative;
}

.trending-badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.trending-badge-overlay .badge-icon {
    font-size: 18px;
}

.trending-badge-overlay .badge-text {
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-screenshot {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.12);
    transition: transform 0.5s ease;
}

.trending-mockup:hover .trending-screenshot {
    transform: translateY(-8px);
}

.trending-details {
    text-align: left;
}

.trending-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.trending-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 40%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.trending-subtitle {
    font-size: 1.2rem;
    color: #5b21b6;
    line-height: 1.6;
    margin-bottom: 36px;
    font-weight: 400;
}

.trending-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.25);
}

.trending-cta-btn:hover:not(.btn-loading) {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.35);
}

.trending-cta-btn:hover:not(.btn-loading) svg {
    transform: translateX(4px);
}

.trending-cta-btn svg {
    transition: transform 0.3s ease;
}

/* Brand Customization Section */
.brand-customization-section {
    padding: 80px 40px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.brand-customization-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-mockup {
    position: relative;
}

.brand-mockup-mobile {
    display: none;
}

.mockup-3d-container {
    position: relative;
    perspective: 1500px;
    transform-style: preserve-3d;
    padding: 3% 3% 8% 3%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px 20px 8px 8px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.25),
        0 20px 40px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-8deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-3d-container::before {
    content: '';
    position: absolute;
    top: 1.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 10;
}

.mockup-3d-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5%;
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border-radius: 0 0 8px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Monitor Stand */
.brand-mockup::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Monitor Base */
.brand-mockup::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 12px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 6px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: -2;
}

/* Mobile Phone Mockup */
.mobile-mockup {
    position: absolute;
    right: -8%;
    bottom: 15%;
    width: 180px;
    z-index: 10;
    transform: rotateY(-5deg) rotateZ(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-mockup:hover .mobile-mockup {
    transform: rotateY(0deg) rotateZ(0deg) translateY(-5px);
}

.mobile-frame {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 28px;
    padding: 10px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid #0f172a;
}

.mobile-notch {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #0f172a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-notch::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.mobile-screenshot {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mockup-3d-container:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.brand-screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    display: block;
}

.brand-details {
    padding: 20px 0;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 25%, #6366f1 50%, #7c3aed 75%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background-size: 200% auto;
}

.brand-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
}

.brand-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.brand-feature-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.brand-feature-content {
    flex: 1;
}

.brand-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 25%, #6366f1 50%, #7c3aed 75%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    background-size: 200% auto;
}

.brand-feature-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.brand-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
    position: relative;
    min-width: 220px;
}


.brand-cta-btn:hover:not(.btn-loading) {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.4);
}

.brand-cta-btn:hover:not(.btn-loading) svg {
    transform: translateX(4px);
}

/* Value Section */
.value-section {
    padding: 80px 40px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.value-section-content {
    max-width: 900px;
    margin: 0 auto;
}

.value-header {
    text-align: center;
    margin-bottom: 60px;
}

.value-section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 25%, #6366f1 50%, #7c3aed 75%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background-size: 200% auto;
}

.value-section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 24px;
}

.value-trial-btn {
    padding: 16px 36px;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    margin-top: 8px;
}

.value-trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(99, 102, 241, 0.4);
}

/* Value Breakdown Container */
.value-breakdown-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.value-breakdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.value-breakdown-item:last-of-type {
    border-bottom: none;
}

.value-item-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.value-item-content {
    flex: 1;
}

.value-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.value-item-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.value-item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6366f1;
}

.value-breakdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.3) 50%, transparent 100%);
    margin: 16px 0;
}

.value-breakdown-total {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.value-total-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 12px;
    flex-shrink: 0;
    color: #dc2626;
}

.value-total-content {
    flex: 1;
}

.value-total-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.value-total-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc2626;
    text-decoration: line-through;
}

.value-breakdown-final {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    border-radius: 16px;
    margin-top: 16px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.value-final-icon {
    font-size: 32px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.value-final-content {
    flex: 1;
}

.value-final-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.value-final-price {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

/* Creators Carousel Section */
.creators-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.creators-content {
    width: 100%;
    margin: 0;
}

.creators-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 40px;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 25%, #6366f1 50%, #7c3aed 75%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.3;
    background-size: 200% auto;
}

.bubble-brand {
    font-family: 'Baloo 2', 'Quicksand', 'Nunito', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1em; /* Ensure consistent sizing */
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

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

.creator-card {
    flex-shrink: 0;
    width: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.creator-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.creator-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.creator-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.creator-followers {
    font-size: 16px;
    font-weight: 600;
    color: #6366f1;
    margin: 0;
}

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #ede9fe 0%, #c4b5fd 30%, #a78bfa 60%, #8b5cf6 100%);
    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.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

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

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

.final-cta {
    padding: 20px 48px;
    background: white;
    color: #6366f1;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    position: relative;
    min-width: 260px;
}


.final-cta:hover:not(.btn-loading) {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
}

/* Special spinner for white background button */
.final-cta .btn-loading-spinner {
    border: 3.5px solid rgba(99, 102, 241, 0.25);
    border-top-color: #6366f1;
    border-right-color: #6366f1;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

.landing-footer {
    padding: 80px 40px 40px 40px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: left;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Floating Help Button */
.floating-help-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
}

.floating-help-btn .help-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.floating-help-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5), 0 6px 16px rgba(0, 0, 0, 0.25);
}

.floating-help-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-help-btn {
        bottom: 24px;
        right: 24px;
        padding: 12px 20px;
    }
    
    .floating-help-btn .help-text {
        font-size: 15px;
    }
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.app-icon {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 32px;
    animation: iconFadeIn 1.2s ease-out forwards, float 8s ease-in-out infinite;
    transform-style: preserve-3d;
    transform: rotateX(20deg) rotateY(var(--rotation, 0deg));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.35),
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 -12px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    opacity: 0;
}

.app-icon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 10%;
    right: 10%;
    height: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(12px);
    z-index: -1;
}

.app-icon:hover {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.2) translateZ(30px);
    animation-play-state: paused;
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.45),
        0 35px 70px rgba(0, 0, 0, 0.35),
        0 18px 36px rgba(0, 0, 0, 0.3),
        inset 0 -12px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.icon-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* YouTube - Red */
.icon-youtube {
    background: linear-gradient(145deg, #FF0000 0%, #CC0000 100%);
}

.icon-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 32px 32px 0 0;
}

/* Facebook - Blue */
.icon-facebook {
    background: linear-gradient(145deg, #1877F2 0%, #0D5DBF 100%);
}

.icon-facebook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 32px 32px 0 0;
}

.icon-facebook .icon-inner {
    font-size: 5.5rem;
}

/* Instagram - Gradient */
.icon-instagram {
    background: linear-gradient(145deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
}

.icon-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 32px 32px 0 0;
}

.insta-camera {
    width: 70px;
    height: 70px;
    border: 7px solid white;
    border-radius: 16px;
    position: relative;
}

.insta-camera::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 6px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.insta-camera::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 10px;
    right: 10px;
}

/* TikTok - Black with chromatic aberration */
.icon-tiktok {
    background: linear-gradient(145deg, #000000 0%, #0a0a0a 100%);
}

.icon-tiktok::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 32px 32px 0 0;
}

.tiktok-icon {
    width: 90%;
    height: 90%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform: translateX(-8%);
}

.tiktok-cyan {
    fill: #25F4EE;
}

.tiktok-white {
    fill: #FFFFFF;
}

.tiktok-red {
    fill: #FE2C55;
}

/* Snapchat - Yellow */
.icon-snapchat {
    background: linear-gradient(145deg, #FFFC00 0%, #F7D900 100%);
}

.icon-snapchat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    border-radius: 32px 32px 0 0;
}

/* LinkedIn - Blue */
.icon-linkedin {
    background: linear-gradient(145deg, #0077B5 0%, #005885 100%);
}

.icon-linkedin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 32px 32px 0 0;
}

/* Icon positioning - Better spaced */
.icon-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0.1s, 0s;
    animation-duration: 1.2s, 9s;
}

.icon-2 {
    top: 12%;
    right: 6%;
    animation-delay: 0.3s, -2s;
    animation-duration: 1.2s, 8.5s;
}

.icon-3 {
    top: 38%;
    left: 3%;
    animation-delay: 0.5s, -4s;
    animation-duration: 1.2s, 10s;
}

.icon-4 {
    top: 45%;
    right: 4%;
    animation-delay: 0.7s, -1s;
    animation-duration: 1.2s, 9.5s;
}

.icon-5 {
    top: 68%;
    left: 8%;
    animation-delay: 0.9s, -5s;
    animation-duration: 1.2s, 8s;
}

.icon-6 {
    top: 72%;
    right: 10%;
    animation-delay: 1.1s, -3s;
    animation-duration: 1.2s, 10.5s;
}

@keyframes float {
    0%, 100% {
        transform: rotateX(15deg) rotateY(var(--rotation, 0deg)) rotateZ(0deg) translateY(0px) translateX(0px) scale(1);
    }
    20% {
        transform: rotateX(18deg) rotateY(calc(var(--rotation, 0deg) + 8deg)) rotateZ(2deg) translateY(-25px) translateX(15px) scale(1.02);
    }
    40% {
        transform: rotateX(12deg) rotateY(calc(var(--rotation, 0deg) - 6deg)) rotateZ(-3deg) translateY(-40px) translateX(-12px) scale(0.98);
    }
    60% {
        transform: rotateX(20deg) rotateY(calc(var(--rotation, 0deg) + 4deg)) rotateZ(1deg) translateY(-20px) translateX(8px) scale(1.01);
    }
    80% {
        transform: rotateX(14deg) rotateY(calc(var(--rotation, 0deg) - 3deg)) rotateZ(-1deg) translateY(-10px) translateX(-5px) scale(0.99);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 0 40px;
        max-width: 900px;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 5.5rem);
        margin-bottom: 28px;
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        margin-bottom: 48px;
    }

    .app-icon {
        width: 100px;
        height: 100px;
        border-radius: 24px;
    }

    .icon-inner {
        font-size: 2.5rem;
    }
    
    .icon-facebook .icon-inner {
        font-size: 2.5rem;
    }

    .icon-1 {
        top: 5%;
        left: 2%;
    }

    .icon-2 {
        top: 8%;
        right: 2%;
    }

    .icon-3 {
        top: 32%;
        left: 1%;
    }

    .icon-4 {
        top: 38%;
        right: 1%;
    }

    .icon-5 {
        top: 65%;
        left: 3%;
    }

    .icon-6 {
        top: 68%;
        right: 4%;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 16px 20px;
    }

    .landing-logo {
        font-size: 20px;
    }

    .logo-icon-landing {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .hero-section {
        padding: 120px 15px 60px 15px;
        min-height: 85vh;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        padding: 0;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero-title {
        font-size: 3rem !important;
        line-height: 1.1 !important;
        margin-bottom: 24px;
        word-wrap: break-word;
        padding: 0 20px;
    }

    .title-gradient {
        display: inline;
        font-size: inherit !important;
    }

    .hero-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.5 !important;
        margin-bottom: 36px;
        padding: 0 20px;
    }

    .floating-icons {
        position: absolute;
        display: block;
    }

    .app-icon {
        position: absolute;
        width: 55px;
        height: 55px;
        border-radius: 12px;
        opacity: 1;
        animation: mobileFloat 8s ease-in-out infinite;
        transform: none;
        transform-style: flat;
        transition: none;
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.35),
            0 10px 20px rgba(0, 0, 0, 0.25),
            0 5px 10px rgba(0, 0, 0, 0.2),
            inset 0 -6px 15px rgba(0, 0, 0, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
    }

    .app-icon::after {
        display: none;
    }
    
    .icon-inner {
        font-size: 1.6rem;
    }
    
    /* Update all icon glossy effects to match mobile border-radius */
    .icon-youtube::before,
    .icon-facebook::before,
    .icon-instagram::before,
    .icon-tiktok::before,
    .icon-snapchat::before,
    .icon-linkedin::before {
        border-radius: 12px 12px 0 0;
    }

    /* 3 icons above text (staggered), 3 icons below CTA (lower) */
    /* YouTube - top left, moved right 25px, moved down 65px */
    .icon-1 {
        top: calc(15% + 65px);
        left: calc(3% + 25px);
        animation-delay: 0s;
    }

    /* Facebook - top right, moved left 25px, moved down 65px */
    .icon-2 {
        top: calc(15% + 65px);
        right: calc(3% + 25px);
        animation-delay: -2.5s;
    }

    /* Instagram - top center, moved down 45px */
    .icon-3 {
        top: calc(11% + 45px);
        left: 50%;
        transform: translateX(-50%);
        animation-delay: -1.2s;
    }

    /* TikTok - middle row right, moved left 25px, moved down 145px */
    .icon-4 {
        top: auto !important;
        bottom: 115px;
        right: calc(3% + 25px);
        animation-delay: -3.8s;
    }

    /* Snapchat - middle row left, moved right 25px, moved down 145px */
    .icon-5 {
        top: auto !important;
        bottom: 115px;
        left: calc(3% + 25px);
        animation-delay: -5.1s;
    }

    /* LinkedIn - bottom center, below Snapchat and TikTok, moved down 145px */
    .icon-6 {
        top: auto !important;
        bottom: 45px;
        left: 50%;
        transform: translateX(-50%);
        animation-delay: -6.5s;
    }

    .icon-inner {
        font-size: 1.6rem;
    }
    
    .icon-facebook .icon-inner {
        font-size: 1.6rem;
    }

    .insta-camera {
        width: 28px;
        height: 28px;
        border: 2px solid white;
        border-radius: 8px;
    }

    .insta-camera::before {
        width: 12px;
        height: 12px;
        border: 2px solid white;
    }

    .insta-camera::after {
        width: 4px;
        height: 4px;
        top: 6px;
        right: 6px;
    }
    
    .tiktok-icon {
        width: 65%;
        height: 65%;
    }

    @keyframes mobileFloat {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-15px);
        }
    }
    
    /* Center icons need special animation to maintain centering */
    .icon-3 {
        animation-name: mobileFloatCenter;
    }
    
    .icon-6 {
        animation-name: mobileFloatCenter;
    }
    
    @keyframes mobileFloatCenter {
        0%, 100% {
            transform: translateX(-50%) translateY(0px);
        }
        50% {
            transform: translateX(-50%) translateY(-15px);
        }
    }

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

    .primary-cta, .secondary-cta {
        width: 100%;
        justify-content: center;
    }

    .landing-demo-section {
        padding: 60px 20px;
    }

    .demo-prompt-text {
        font-size: 18px;
        padding: 20px 24px;
    }

    .demo-cards-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 20px 20px 20px;
        margin: 0 -20px 40px -20px;
        scrollbar-width: none;
    }
    
    .demo-cards-grid::-webkit-scrollbar {
        display: none;
    }
    
    .demo-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        max-width: 400px;
    }
    
    .demo-nav-hint {
        display: none;
    }

    .demo-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .demo-modal-header {
        padding: 32px 24px 24px;
    }

    .demo-modal-title {
        font-size: 1.25rem;
    }

    .demo-modal-fields {
        padding: 24px;
    }

    .features-section {
        padding: 60px 20px;
    }

    /* Creators Section Mobile */
    .creators-section {
        padding: 60px 0;
    }

    .creators-title {
        font-size: 1.6rem;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .carousel-container {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 10px 0;
    }

    .carousel-container::-webkit-scrollbar {
        display: none;
    }

    .carousel-track {
        gap: 20px;
        padding: 0 20px;
    }

    .creator-card {
        min-width: 240px;
        width: 240px;
        padding: 24px 20px;
    }

    .creator-image {
        width: 100px;
        height: 100px;
        margin-bottom: 16px;
    }

    .creator-name {
        font-size: 18px;
    }

    .creator-followers {
        font-size: 14px;
    }

    /* Features grid stays as 4 columns (1 row) on tablet */
}

/* Mobile only - single column */
@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    /* Trending Live Mobile */
    .trending-live-section {
        padding: 80px 20px;
    }

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

    .trending-mockup {
        order: 1;
    }

    .trending-details {
        order: 2;
        text-align: center;
    }

    .trending-label {
        display: block;
    }

    .trending-title {
        font-size: 2.5rem;
    }

    .trending-subtitle {
        font-size: 1.1rem;
    }

    .trending-badge-overlay {
        top: 16px;
        left: 16px;
        padding: 8px 14px;
    }

    .trending-cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Brand Customization Mobile */
    .brand-customization-section {
        padding: 80px 20px;
    }

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

    .brand-mockup-desktop {
        display: none;
    }

    .brand-mockup-mobile {
        display: block;
        position: relative;
        margin: 20px 0 30px 0;
    }

    .brand-features-wrapper {
        margin-top: 10px;
    }

    .brand-details {
        padding: 0;
    }

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

    .brand-subtitle {
        font-size: 1.1rem;
    }

    .mockup-3d-container {
        transform: rotateY(0deg) rotateX(0deg);
    }

    .mobile-mockup {
        display: none;
    }

    .brand-cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Value Section Mobile */
    .value-section {
        padding: 80px 20px;
    }

    .value-section-title {
        font-size: 2rem;
    }

    .value-section-subtitle {
        font-size: 1.1rem;
    }

    .value-header {
        margin-bottom: 40px;
    }

    /* Value Breakdown Mobile */
    .value-breakdown-container {
        padding: 24px 20px;
    }

    .value-breakdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
    }

    .value-item-content {
        order: 1;
    }

    .value-item-price {
        order: 2;
        align-self: flex-end;
        margin-top: -10px;
    }

    .value-item-icon {
        order: 0;
    }

    .value-item-title {
        font-size: 0.95rem;
    }

    .value-item-subtitle {
        font-size: 0.8rem;
    }

    .value-breakdown-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .value-total-price {
        align-self: flex-end;
        margin-top: -10px;
    }

    .value-breakdown-final {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .value-final-price {
        align-self: flex-end;
        font-size: 1.75rem;
    }

    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

/* Small phones (iPhone 17 and smaller) - Move bottom icons lower */
@media (max-width: 430px) {
    /* TikTok - move lower to avoid button overlap */
    .icon-4 {
        bottom: 70px !important;
    }

    /* Snapchat - move lower to avoid button overlap */
    .icon-5 {
        bottom: 70px !important;
    }

    /* LinkedIn - move lower as it's centered */
    .icon-6 {
        bottom: 10px !important;
    }
}

/* iPhone SE and smaller - Adjust icon positioning to avoid text overlap */
@media (max-width: 375px) {
    /* Make hero section bigger to accommodate icon spacing */
    .hero-section {
        min-height: 100vh !important;
        padding-bottom: 70px !important;
        padding-top: 100px !important;
    }

    /* Move hero content up */
    .hero-content {
        margin-top: -30px;
    }

    /* YouTube - move UP */
    .icon-1 {
        top: 10% !important;
        left: calc(3% + 25px) !important;
    }

    /* Facebook - move UP */
    .icon-2 {
        top: 10% !important;
        right: calc(3% + 25px) !important;
    }

    /* Instagram - move UP */
    .icon-3 {
        top: 7% !important;
    }

    /* TikTok - move DOWN */
    .icon-4 {
        bottom: 45px !important;
    }

    /* Snapchat - move DOWN */
    .icon-5 {
        bottom: 45px !important;
    }

    /* LinkedIn - move DOWN */
    .icon-6 {
        bottom: 5px !important;
    }
}

/* Hide "Start Your Custom Plan" button on mobile */
@media (max-width: 768px) {
    .nav-cta-btn {
        display: none;
    }
}
