/* ==============================================
   LinkedIn AI Assistant - Landing Page Styles
   Colors: #7dde4f (Green) | #000000 (Black)
   Font: Satoshi
   Advanced Animations & Effects
   ============================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7dde4f;
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f9fef7;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Load Animation */
@keyframes page-load {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

body {
    animation: page-load 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Particle Background */
#particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
      background: radial-gradient(circle at 20% 50%, rgba(125, 222, 79, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(125, 222, 79, 0.12) 0%, transparent 50%);

    animation: background-shift 15s ease-in-out infinite;
}

@keyframes background-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Commented out dot animation for now */
/*
#particles-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
    animation: particles-float 20s linear infinite;
}
*/

@keyframes particles-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

@keyframes particles-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: nav-reveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    padding: 0;
}

@keyframes nav-reveal {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 30px rgba(125, 222, 79, 0.08);
    padding: 0.75rem 1.5rem;
    top: 0.2rem;
    width: calc(100% - 12rem);
    left: 6rem;
    border-radius: 24px;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled .nav-container {
    padding: 0.5rem 1rem;
    max-width: 1200px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 150px;
    height: 36px;
    transition: var(--transition);
    /* animation: logo-float 3s ease-in-out infinite; */
    object-fit: contain;
    border-radius: 8px;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.nav-logo:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--black);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
    box-shadow: 0 4px 14px rgba(125, 222, 79, 0.3);
}

.btn-primary:hover {
    background: #6acc3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(125, 222, 79, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(125, 222, 79, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-icon, .btn-icon-left {
    transition: var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn:hover .btn-icon-left {
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: visible;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(125, 222, 79, 0.03) 0%, transparent 50%);
    animation: hero-glow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hero-glow {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(10%) scale(1.1); }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(125, 222, 79, 0.1);
    border: 1px solid rgba(125, 222, 79, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
    animation: title-reveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes title-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #5ab836 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.glitch-text {
    animation: gradient-shift 3s ease-in-out infinite, glitch 5s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(10deg); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

/* LinkedIn Mockup - Advanced Realistic Animation */
.linkedin-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.linkedin-window {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: window-float 6s ease-in-out infinite;
}

@keyframes window-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.window-header {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.window-dots span:nth-child(1) { background: #ff5f56; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #27c93f; }

.window-title {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.linkedin-content {
    padding: 1.5rem;
    background: var(--gray-50);
}

.post-composer {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.composer-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #5ab836);
    flex-shrink: 0;
}

.composer-input {
    flex: 1;
    position: relative;
}

.typing-text {
    font-size: 0.875rem;
    color: var(--gray-400);
    padding: 0.5rem 0;
    animation: text-fade 3s ease-in-out infinite;
}

@keyframes text-fade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.ai-button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.25rem 0.75rem;
    background: rgba(125, 222, 79, 0.1);
    border: 1px solid rgba(125, 222, 79, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    animation: ai-pulse 2s ease-in-out infinite;
}

@keyframes ai-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(125, 222, 79, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(125, 222, 79, 0); }
}

.ai-suggestions {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    animation: suggestions-appear 1s ease-out 0.5s backwards;
}

@keyframes suggestions-appear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.suggestion-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.ai-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.suggestion-item {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: suggestion-slide-in 0.5s ease-out backwards;
}

.suggestion-item:nth-child(2) { animation-delay: 1s; }
.suggestion-item:nth-child(3) { animation-delay: 1.5s; }
.suggestion-item:nth-child(4) { animation-delay: 2s; }

@keyframes suggestion-slide-in {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.suggestion-text {
    flex: 1;
}

.text-line {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 6px;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.text-line.short {
    width: 60%;
}

.suggestion-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-600);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.check-btn {
    animation: check-appear 0.5s ease-out 2.5s backwards;
}

@keyframes check-appear {
    0% { opacity: 0; transform: scale(0) rotate(-180deg); }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

.generating {
    justify-content: center;
}

.generating-indicator {
    display: flex;
    gap: 6px;
}

.generating-indicator .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: dot-bounce 1.4s ease-in-out infinite;
}

.generating-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.generating-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dot-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.success-notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
    animation: notification-pop 0.5s ease-out 3s backwards, notification-fade 0.5s ease-in 5s forwards;
}

@keyframes notification-pop {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes notification-fade {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Advanced Hero Animations */
.post-composer.active {
    border: 2px solid rgba(125, 222, 79, 0.3);
    animation: glow-border 2s ease-in-out infinite;
}

@keyframes glow-border {
    0%, 100% { box-shadow: 0 0 0 rgba(125, 222, 79, 0); }
    50% { box-shadow: 0 0 20px rgba(125, 222, 79, 0.3); }
}

.composer-toolbar {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.toolbar-item {
    font-size: 0.75rem;
    color: var(--gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toolbar-item.active {
    background: rgba(125, 222, 79, 0.1);
    color: var(--primary);
    animation: toolbar-pulse 2s ease-in-out infinite;
}

@keyframes toolbar-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.realtime-typing::after {
    content: 'Excited to share my latest insights on AI and professional development. This technology is transforming how we work...';
    display: inline;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 8s steps(100) infinite, text-glow 2s ease-in-out infinite;
    color: var(--gray-700);
}

@keyframes typing {
    0%, 10% { width: 0; }
    90%, 100% { width: 100%; }
}

@keyframes text-glow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.ai-button.active {
    background: var(--primary);
    color: var(--black);
    animation: ai-active-pulse 1.5s ease-in-out infinite;
}

@keyframes ai-active-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(125, 222, 79, 0.7); }
    50% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(125, 222, 79, 0); }
}

.ai-button.active span {
    animation: fade-pulse 2s ease-in-out infinite;
}

/* Comment Suggestion Popup */
.comment-suggestion {
    position: absolute;
    top: 120px;
    right: -320px;
    width: 300px;
    animation: slide-in-right 1s ease-out 1.5s backwards, float-gentle 4s ease-in-out 2.5s infinite;
    z-index: 100;
}

@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.suggestion-popup {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(125, 222, 79, 0.2);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-800);
}

.comment-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: 8px;
    animation: option-appear 0.5s ease-out backwards;
}

.comment-option:nth-child(1) { animation-delay: 1.7s; }
.comment-option:nth-child(2) { animation-delay: 1.9s; }
.comment-option:nth-child(3) { animation-delay: 2.1s; }

@keyframes option-appear {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.option-icon {
    font-size: 1.25rem;
}

.option-text {
    flex: 1;
    min-width: 0;
}

.option-preview {
    font-size: 0.7rem;
    color: var(--gray-700);
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.option-label {
    font-size: 0.625rem;
    color: var(--gray-500);
    font-weight: 600;
}

.use-btn {
    padding: 0.25rem 0.5rem;
    background: var(--primary);
    color: var(--black);
    border: none;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.use-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(125, 222, 79, 0.3);
}

/* Text Rewrite Panel */
.rewrite-panel {
    position: absolute;
    bottom: 100px;
    right: -340px;
    width: 320px;
    animation: slide-in-right 1s ease-out 3s backwards, float-gentle 4s ease-in-out 4s infinite;
    z-index: 100;
}

.rewrite-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.rewrite-transform {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(125, 222, 79, 0.2);
}

.before-text {
    font-size: 0.75rem;
    color: #e53e3e;
    padding: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.transform-arrow {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
    animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.after-text {
    font-size: 0.75rem;
    color: var(--primary);
    padding: 0.5rem;
    background: rgba(125, 222, 79, 0.1);
    border-radius: 6px;
    line-height: 1.4;
}

.after-text.typing {
    animation: text-reveal 4s ease-out 3.5s backwards;
}

@keyframes text-reveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Job Alert Notification */
.job-alert {
    position: absolute;
    top: 100px;
    left: -280px;
    width: 260px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(125, 222, 79, 0.2);
    animation: slide-in-left 1s ease-out 2s backwards, float-gentle 4s ease-in-out 3s infinite;
    z-index: 100;
}

@keyframes slide-in-left {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.alert-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(125, 222, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.alert-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #ff5f56;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.alert-content {
    animation: content-fade 0.5s ease-out 2.2s backwards;
}

.alert-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.alert-jobs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.job-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: 6px;
    font-size: 0.75rem;
    animation: job-appear 0.5s ease-out backwards;
}

.job-item:nth-child(1) { animation-delay: 2.4s; }
.job-item:nth-child(2) { animation-delay: 2.6s; }
.job-item:nth-child(3) { animation-delay: 2.8s; }

@keyframes job-appear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.job-tag {
    padding: 0.125rem 0.5rem;
    background: rgba(125, 222, 79, 0.2);
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.job-title {
    flex: 1;
    color: var(--gray-700);
    font-weight: 600;
}

@keyframes content-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    animation: badge-float 4s ease-in-out infinite;
}

.badge-1 {
    top: -20px;
    left: -40px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -60px;
    animation-delay: 1.3s;
}

.badge-3 {
    bottom: 20px;
    left: -30px;
    animation-delay: 2.6s;
}

.badge-4 {
    top: 80px;
    left: -50px;
    animation-delay: 3.9s;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    width: auto;
    margin: 0 auto;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator:hover .scroll-text {
    color: var(--primary);
}

.scroll-indicator:hover .scroll-icon {
    border-color: var(--primary);
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-500);
    font-weight: 700;
    transition: color 0.3s ease;
}

.scroll-icon {
    width: 28px;
    height: 44px;
    border: 2px solid var(--gray-400);
    border-radius: 14px;
    position: relative;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-dot {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: scroll-down 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(125, 222, 79, 0.5);
}

@keyframes scroll-down {
    0% { 
        top: 10px; 
        opacity: 1; 
        transform: translateX(-50%) scale(1);
    }
    100% { 
        top: 28px; 
        opacity: 0; 
        transform: translateX(-50%) scale(0.5);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(125, 222, 79, 0.1);
    border: 1px solid rgba(125, 222, 79, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--black) 0%, var(--black) 50%, var(--primary) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-reveal 1.5s ease-out forwards;
}

@keyframes text-reveal {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

.section-title:hover {
    animation: text-shimmer 2s ease-in-out infinite;
}

@keyframes text-shimmer {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 100% 0; }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   Comparison Section - Compact Card Layout
   ========================================== */
.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Comparison Cards */
.comparison-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    width: 370px !important;
}

/* Hover expansion - cards expand horizontally */
.comparison-card:hover {
    transform: scale(1.02);
    box-shadow: 
        0 20px 60px rgba(125, 222, 79, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* First card expands right on hover */
.comparison-card:nth-child(1):hover {
    transform: scale(1.15) translateX(8%);
}

/* Second card expands right on hover */
.comparison-card:nth-child(2):hover {
    transform: scale(1.15) translateX(8%);
}

/* Third card expands left on hover */
.comparison-card:nth-child(3):hover {
    transform: scale(1.15) translateX(-8%);
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #5ab836);
    opacity: 0;
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.15);
}

.comparison-card:hover::before {
    opacity: 1;
}

.card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Card Comparison Layout */
.card-comparison {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    height: 100%;
}

.comparison-side {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    width: 50%;
    position: relative;
}

.after-side {
    position: relative;
}

.comparison-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--primary);
    animation: arrow-pulse 2s ease-in-out infinite;
}

.comparison-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(5px); opacity: 1; }
}

/* Side Labels */
.side-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.before-side .side-label {
    color: #e53e3e;
    background: rgba(229, 62, 62, 0.05);
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.after-side .side-label {
    color: var(--primary);
    background: rgba(125, 222, 79, 0.05);
    border: 1px solid rgba(125, 222, 79, 0.2);
}

.comparison-card:hover .side-label {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.side-label .label-icon {
    width: 18px;
    height: 18px;
}

/* Metric Display */
.metric-display {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparison-card:hover .metric-display {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.metric-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    padding-left: 0.75rem;
}

.metric-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary), #5ab836);
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-card:hover .metric-stat::before {
    opacity: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.stat-number.negative {
    color: #e53e3e;
}

.stat-number.positive {
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Opportunity Display */
.opportunity-display {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem;
}

.opp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.opp-item::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;
}

.comparison-card:hover .opp-item::before {
    left: 100%;
}

.opp-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.comparison-card:hover .opp-item svg {
    transform: scale(1.1) rotate(5deg);
}

.opp-item.missed {
    background: rgba(255, 107, 107, 0.05);
    color: #e53e3e;
    border-color: rgba(255, 107, 107, 0.2);
}

.opp-item.gained {
    background: rgba(125, 222, 79, 0.05);
    color: var(--primary);
    border-color: rgba(125, 222, 79, 0.2);
    animation: item-appear 0.6s ease-out backwards;
}

.comparison-card:hover .opp-item.gained {
    background: rgba(125, 222, 79, 0.1);
    border-color: rgba(125, 222, 79, 0.4);
    box-shadow: 0 4px 12px rgba(125, 222, 79, 0.15);
}

.opp-item.gained:nth-child(1) { animation-delay: 0.2s; }
.opp-item.gained:nth-child(2) { animation-delay: 0.4s; }

@keyframes item-appear {
    0% { opacity: 0; transform: translateX(-20px) scale(0.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.opp-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.opp-count {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.opp-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Writing Sample */
.writing-sample {
    padding: 1rem;
    border-radius: var(--radius);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.comparison-card:hover .writing-sample {
    transform: translateY(-2px);
}

.before-writing {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 107, 107, 0.02));
    min-height: 140px;
    border-color: rgba(255, 107, 107, 0.2);
}

.after-writing {
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.05), rgba(125, 222, 79, 0.02));
    min-height: 140px;
    border-color: rgba(125, 222, 79, 0.2);
    position: relative;
    overflow: hidden;
}

.after-writing::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(125, 222, 79, 0.1), transparent);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.sample-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
    flex: 1;
    min-height: 60px;
    max-height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.sample-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    animation: badge-slide-in 0.5s ease-out;
}

@keyframes badge-slide-in {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.sample-badge.weak {
    background: rgba(255, 107, 107, 0.2);
    color: #e53e3e;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.sample-badge.strong {
    background: rgba(125, 222, 79, 0.2);
    color: var(--primary);
    border: 1px solid rgba(125, 222, 79, 0.3);
    animation: badge-slide-in 0.5s ease-out, badge-glow-strong 2s ease-in-out infinite 1s;
}

@keyframes badge-glow-strong {
    0%, 100% { box-shadow: 0 0 0 rgba(125, 222, 79, 0); }
    50% { box-shadow: 0 0 15px rgba(125, 222, 79, 0.4); }
}

.typed-rewrite {
    position: relative;
}

.typed-rewrite::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    color: var(--primary);
}

/* Quality Indicator */
.quality-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quality-bar {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: var(--gray-200);
    position: relative;
    overflow: hidden;
}

.quality-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 999px;
    transition: width 1s ease-out;
}

.quality-bar.low::after {
    width: 20%;
    background: #e53e3e;
}

.quality-bar.high::after {
    width: 100%;
    background: var(--primary);
    animation: bar-fill 1.5s ease-out 0.5s backwards;
}

@keyframes bar-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.quality-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

/* Growth Badge */
/* Growth Badge - Positioned at top-right corner of card */
.growth-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), #5ab836);
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 999px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(125, 222, 79, 0.3);
    animation: badge-float 3s ease-in-out infinite;
    overflow: hidden;
    z-index: 10;
    border: 3px solid var(--white);
}

.growth-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 4px 12px rgba(125, 222, 79, 0.3); }
    50% { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 20px rgba(125, 222, 79, 0.5); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Card Expanded View - Hidden by default */
.card-expanded-view {
    position: absolute;
    top: 0;
    right: -100%;
    width: 95%;
    height: 100%;
    background: #ffffff;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15),
                inset 0 0 0 1px rgba(125, 222, 79, 0.1);
    z-index: 5;
    overflow: hidden;
}

.card-expanded-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.comparison-card:hover .card-expanded-view {
    opacity: 1;
    visibility: visible;
    right: -90%;
}

.comparison-card:nth-child(3):hover .card-expanded-view {
    left: -90%;
    right: auto;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15),
                inset 0 0 0 1px rgba(125, 222, 79, 0.1);
}

/* Card Comparison Content */
.card-comparison {
    min-width: 0;
    flex: 1;
}

/* Expanded View Header */
.expanded-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(125, 222, 79, 0.3);
    animation: slideDown 0.6s ease-out;
    position: relative;
}

.expanded-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    animation: lineExpand 1s ease-out 0.3s forwards;
}

@keyframes lineExpand {
    to { width: 100%; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expanded-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
    background: linear-gradient(135deg, var(--primary), #5ab836);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.expanded-header h4::before {
    content: '✨';
    position: absolute;
    left: -30px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Growth Chart with SVG Line */
.growth-chart {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mini-chart {
    width: 100%;
    height: 80px;
    overflow: visible;
}

.chart-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.comparison-card:hover .chart-line {
    animation: drawLine 2s ease-out 0.3s forwards;
}

.chart-area {
    opacity: 0;
}

.comparison-card:hover .chart-area {
    animation: fadeInArea 1.5s ease-out 0.8s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

.chart-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
}

/* Bar Chart */
.bar-chart-container {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    height: 100px;
    padding: 0.5rem;
    background: rgba(125, 222, 79, 0.05);
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    position: relative;
}

.bar-item::before {
    content: '';
    width: 30px;
    height: 30px;
    background: conic-gradient(
        var(--primary) 0deg,
        var(--primary) calc(var(--percentage, 50) * 3.6deg),
        rgba(125, 222, 79, 0.1) calc(var(--percentage, 50) * 3.6deg),
        rgba(125, 222, 79, 0.1) 360deg
    );
    border-radius: 50%;
    margin-bottom: 0.25rem;
    box-shadow: 0 2px 8px rgba(125, 222, 79, 0.2);
    opacity: 0;
}

.comparison-card:hover .bar-item::before {
    animation: pieAppear 0.6s ease-out forwards;
}

@keyframes pieAppear {
    to { opacity: 1; }
}

.bar-item:nth-child(1)::before { --percentage: 35; }
.bar-item:nth-child(2)::before { --percentage: 55; }
.bar-item:nth-child(3)::before { --percentage: 75; }
.bar-item:nth-child(4)::before { --percentage: 95; }

.comparison-card:hover .bar-item:nth-child(1) {
    animation-delay: 0.4s;
}

.comparison-card:hover .bar-item:nth-child(2) {
    animation-delay: 0.5s;
}

.comparison-card:hover .bar-item:nth-child(3) {
    animation-delay: 0.6s;
}

.comparison-card:hover .bar-item:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.bar-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--primary), #5ab836);
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 0 -2px 8px rgba(125, 222, 79, 0.3);
}

.comparison-card:hover .bar-item:nth-child(1) .bar-fill {
    animation: barGrow 1s ease-out 0.4s forwards;
}

.comparison-card:hover .bar-item:nth-child(2) .bar-fill {
    animation: barGrow 1s ease-out 0.5s forwards;
}

.comparison-card:hover .bar-item:nth-child(3) .bar-fill {
    animation: barGrow 1s ease-out 0.6s forwards;
}

.comparison-card:hover .bar-item:nth-child(4) .bar-fill {
    animation: barGrow 1s ease-out 0.7s forwards;
}

@keyframes barGrow {
    from {
        height: 0%;
    }
    to {
        height: var(--height);
    }
}

.bar-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--gray-600);
    order: -1;
}

.bar-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

/* Quality Metrics */
.quality-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
    padding-right: 50px;
    position: relative;
}

.metric-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    position: relative;
}

.metric-circle {
    position: absolute;
    right: -45px;
    width: 36px;
    height: 36px;
    opacity: 0;
}

.comparison-card:hover .metric-row:nth-child(1) .metric-circle {
    animation: fadeIn 0.6s ease-out 0.6s forwards;
}

.comparison-card:hover .metric-row:nth-child(2) .metric-circle {
    animation: fadeIn 0.6s ease-out 0.7s forwards;
}

.comparison-card:hover .metric-row:nth-child(3) .metric-circle {
    animation: fadeIn 0.6s ease-out 0.8s forwards;
}

.mini-circular-chart {
    transform: rotate(-90deg);
}

.mini-circle-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 3;
}

.mini-circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 0, 100;
}

.comparison-card:hover .mini-circle {
    animation: circleProgress 1.5s ease-out 1s forwards;
}

.comparison-card:hover .metric-row:nth-child(1) {
    animation: fadeIn 0.5s ease-out 0.4s forwards;
}

.comparison-card:hover .metric-row:nth-child(2) {
    animation: fadeIn 0.5s ease-out 0.5s forwards;
}

.comparison-card:hover .metric-row:nth-child(3) {
    animation: fadeIn 0.5s ease-out 0.6s forwards;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    min-width: 100px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #5ab836);
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(125, 222, 79, 0.5);
}

.comparison-card:hover .metric-row:nth-child(1) .progress-fill {
    animation: progressFill 1.5s ease-out 0.5s forwards;
}

.comparison-card:hover .metric-row:nth-child(2) .progress-fill {
    animation: progressFill 1.5s ease-out 0.6s forwards;
}

.comparison-card:hover .metric-row:nth-child(3) .progress-fill {
    animation: progressFill 1.5s ease-out 0.7s forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: var(--width);
    }
}

.metric-percent {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 40px;
    text-align: right;
}

/* Stats Grid in Expanded View */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(125, 222, 79, 0.05);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.9);
}

.comparison-card:hover .stat-item:nth-child(1) {
    animation: popIn 0.5s ease-out 0.8s forwards;
}

.comparison-card:hover .stat-item:nth-child(2) {
    animation: popIn 0.5s ease-out 0.9s forwards;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Circular Progress Chart */
.stat-circle {
    width: 60px;
    height: 60px;
}

.circular-chart {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 0, 100;
}

.comparison-card:hover .circle {
    animation: circleProgress 1.5s ease-out 1s forwards;
}

@keyframes circleProgress {
    to {
        stroke-dasharray: var(--percentage), 100;
    }
}

.stat-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.stat-number-large {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0;
    transform: scale(0.8);
}

.comparison-card:hover .stat-number-large {
    animation: numberPop 0.6s ease-out 1.2s forwards;
}

@keyframes numberPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bar-wobble {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.95); }
}

/* Features Section */
.demo-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: particle-float 15s ease-in-out infinite;
}

.before-particles::before {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15), transparent);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.before-particles::after {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent);
    bottom: -75px;
    right: -75px;
    animation-delay: 7.5s;
}

.after-particles::before {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(125, 222, 79, 0.2), transparent);
    top: -60px;
    right: -60px;
    animation-delay: 2s;
}

.after-particles::after {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(125, 222, 79, 0.15), transparent);
    bottom: -90px;
    left: -90px;
    animation-delay: 10s;
}

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(20px, -20px) scale(1.1); opacity: 0.8; }
    50% { transform: translate(-15px, 15px) scale(0.9); opacity: 0.6; }
    75% { transform: translate(15px, 20px) scale(1.05); opacity: 0.7; }
}

/* Demo Header */
.demo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.demo-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-avatar svg {
    width: 32px;
    height: 32px;
}

.demo-avatar.sad {
    background: linear-gradient(135deg, #cbd5e0, #a0aec0);
    color: #718096;
    animation: pulse-sad 3s ease-in-out infinite;
}

.demo-avatar.happy {
    background: linear-gradient(135deg, var(--primary), #5ab836);
    color: var(--black);
    animation: pulse-happy 2s ease-in-out infinite;
}

@keyframes pulse-sad {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

@keyframes pulse-happy {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(125, 222, 79, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 10px rgba(125, 222, 79, 0);
    }
}

.demo-info {
    flex: 1;
}

.demo-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.demo-title {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.verified-badge {
    width: 24px;
    height: 24px;
    color: var(--primary);
    animation: badge-appear 0.6s ease-out 1s backwards;
}

.verified-badge svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(125, 222, 79, 0.3));
}

@keyframes badge-appear {
    0% { opacity: 0; transform: scale(0) rotate(-180deg); }
    60% { transform: scale(1.2) rotate(10deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Demo Post */
.demo-post {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    position: relative;
    min-height: 180px;
}

.post-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.post-text.faded {
    color: var(--gray-400);
    font-style: italic;
}

.post-text.typing {
    color: var(--gray-900);
}

.typed-content {
    font-weight: 500;
}

.cursor-blink {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    color: var(--primary);
    font-weight: 700;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Engagement Metrics */
.engagement-metrics {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.engagement-metrics.low .metric {
    opacity: 0.5;
}

.engagement-metrics.high .metric {
    animation: metric-bounce 0.6s ease-out backwards;
}

.engagement-metrics.high .metric:nth-child(1) { animation-delay: 1.5s; }
.engagement-metrics.high .metric:nth-child(2) { animation-delay: 1.7s; }
.engagement-metrics.high .metric:nth-child(3) { animation-delay: 1.9s; }

@keyframes metric-bounce {
    0% { opacity: 0; transform: translateY(20px); }
    60% { transform: translateY(-5px); }
    100% { opacity: 1; transform: translateY(0); }
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-icon {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
    flex-shrink: 0;
}

.engagement-metrics.high .metric-icon {
    color: var(--primary);
}

.metric-count {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--gray-900);
    min-width: 50px;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Engagement Animation with SVG Particles */
.engagement-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.like-particle {
    position: absolute;
    width: 24px;
    height: 24px;
    animation: float-up 4s ease-out infinite;
}

.like-particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    color: var(--primary);
}

.like-particle:nth-child(2) {
    left: 50%;
    animation-delay: 1.3s;
    color: #fbbf24;
}

.like-particle:nth-child(3) {
    left: 75%;
    animation-delay: 2.6s;
    color: var(--primary);
}

@keyframes float-up {
    0% {
        bottom: 0;
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
}

/* Demo Status */
.demo-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.demo-status.negative {
    background: rgba(255, 107, 107, 0.1);
    color: #e53e3e;
}

.demo-status.positive {
    background: rgba(125, 222, 79, 0.1);
    color: #2d7a3e;
}

.status-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.status-pulse::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.status-pulse.red {
    background: #e53e3e;
}

.status-pulse.red::before {
    border: 2px solid #e53e3e;
}

.status-pulse.green {
    background: var(--primary);
}

.status-pulse.green::before {
    border: 2px solid var(--primary);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* VS Circle with Advanced Effects */
.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.vs-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #5ab836);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--black);
    box-shadow: 0 10px 30px rgba(125, 222, 79, 0.4);
    position: relative;
    animation: vs-pulse 2s ease-in-out infinite;
}

.vs-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #5ab836, var(--primary));
    background-size: 200% 200%;
    animation: gradient-rotate 3s ease infinite;
    z-index: -1;
}

@keyframes gradient-rotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes vs-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.vs-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
    filter: blur(20px);
    animation: glow-pulse 2s ease-in-out infinite;
}

.vs-glow::before,
.vs-glow::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: wave-expand 3s ease-out infinite;
}

.vs-glow::after {
    animation-delay: 1.5s;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes wave-expand {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Metrics Demo */
.metrics-demo {
    min-height: 400px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid;
    transition: var(--transition);
}

.metric-box.negative {
    border-color: rgba(255, 107, 107, 0.3);
    animation: box-shake 3s ease-in-out infinite;
}

.metric-box.positive {
    border-color: rgba(125, 222, 79, 0.3);
    animation: box-grow 0.8s ease-out backwards;
}

.metric-box.positive:nth-child(1) { animation-delay: 0.2s; }
.metric-box.positive:nth-child(2) { animation-delay: 0.4s; }
.metric-box.positive:nth-child(3) { animation-delay: 0.6s; }

@keyframes box-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

@keyframes box-grow {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.metric-icon-box {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--gray-600);
    animation: icon-float 3s ease-in-out infinite;
}

.metric-box.negative .metric-icon-box {
    color: #e53e3e;
}

.metric-box.positive .metric-icon-box {
    color: var(--primary);
    animation: icon-float 3s ease-in-out infinite, icon-glow 2s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes icon-glow {
    0%, 100% { filter: drop-shadow(0 0 0px rgba(125, 222, 79, 0.5)); }
    50% { filter: drop-shadow(0 0 12px rgba(125, 222, 79, 0.8)); }
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.metric-number.stagnant {
    color: #e53e3e;
}

.metric-number.growing {
    color: var(--primary);
}

.metric-title {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.metric-trend svg {
    width: 20px;
    height: 20px;
}

.metric-trend.down {
    color: #e53e3e;
}

.metric-trend.up {
    color: var(--primary);
    animation: trend-bounce 1s ease-out infinite;
}

@keyframes trend-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Growth Chart */
.growth-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    height: 100px;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), #5ab836);
    border-radius: var(--radius) var(--radius) 0 0;
    transition: height 0.6s ease-out;
    min-height: 5%;
}

.growth-chart.negative .chart-bar {
    background: linear-gradient(180deg, #ff6b6b, #ee5a6f);
    animation: bar-wobble 0.5s ease-out;
}

.growth-chart.positive .chart-bar {
    animation: bar-rise 0.8s ease-out backwards;
}

.growth-chart.positive .chart-bar:nth-child(1) { animation-delay: 0.8s; }
.growth-chart.positive .chart-bar:nth-child(2) { animation-delay: 1s; }
.growth-chart.positive .chart-bar:nth-child(3) { animation-delay: 1.2s; }
.growth-chart.positive .chart-bar:nth-child(4) { animation-delay: 1.4s; }
.growth-chart.positive .chart-bar:nth-child(5) { animation-delay: 1.6s; }

@keyframes bar-rise {
    0% { height: 5%; opacity: 0; }
    100% { opacity: 1; }
}

@keyframes bar-wobble {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.95); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #5ab836);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(125, 222, 79, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::after {
    opacity: 1;
    animation: feature-glow 2s ease-in-out infinite;
}

@keyframes feature-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 5%) scale(1.1); }
}

.feature-card:hover {
    border-color: rgba(125, 222, 79, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(125, 222, 79, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.05), rgba(125, 222, 79, 0.02));
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(125, 222, 79, 0.2));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(125, 222, 79, 0.4));
    animation: icon-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1.1) rotate(5deg) translateY(0); }
    50% { transform: scale(1.2) rotate(5deg) translateY(-10px); }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.step:nth-child(even) {
    grid-template-columns: 80px 1fr 1fr;
}

.step:nth-child(even) .step-content {
    order: 2;
}

.step:nth-child(even) .step-visual {
    order: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(125, 222, 79, 0.2);
    line-height: 1;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-mockup, .settings-mockup, .creation-mockup {
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.step:hover .browser-mockup,
.step:hover .settings-mockup,
.step:hover .creation-mockup {
    transform: scale(1.05);
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -1rem -1rem 1rem;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.browser-content {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon svg {
    width: 80px;
    height: 80px;
    animation: download-bounce 2s ease-in-out infinite;
}

@keyframes download-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.settings-mockup {
    padding: 2rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.setting-label {
    width: 60%;
    height: 12px;
    background: var(--gray-200);
    border-radius: 4px;
}

.setting-toggle {
    width: 44px;
    height: 24px;
    background: var(--gray-300);
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.setting-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.setting-toggle.active {
    background: var(--primary);
}

.setting-toggle.active::after {
    transform: translateX(20px);
}

.creation-mockup {
    padding: 3rem;
    position: relative;
}

.sparkles svg {
    width: 120px;
    height: 120px;
    animation: sparkle-rotate 4s linear infinite;
}

@keyframes sparkle-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Demo Section */
.demo {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    color: var(--white);
}

.demo-container {
    text-align: center;
    width: 100%;
    min-height: 350px !important    ;

}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(125, 222, 79, 0.1);
    border: 1px solid rgba(125, 222, 79, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.play-icon {
    width: 16px;
    height: 16px;
}

.demo-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.demo-video {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.1), rgba(125, 222, 79, 0.05));
}

.play-button {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: #f8fef5;
    z-index: 1;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8fef5;
    z-index: 0;
    pointer-events: none;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(125, 222, 79, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover::before {
    opacity: 1;
    animation: pricing-rotate 3s linear infinite;
}

@keyframes pricing-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(125, 222, 79, 0.1);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.05), rgba(125, 222, 79, 0.02));
    transform: scale(1.05);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
}

.price-period {
    color: var(--gray-500);
    font-size: 1rem;
}

.pricing-description {
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.testimonial-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.05), rgba(125, 222, 79, 0.02));
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Advanced How It Works Animations */
.animated-browser, .animated-settings, .animated-creation {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 100%;
}

.browser-chrome {
    background: var(--gray-100);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chrome-dots {
    display: flex;
    gap: 6px;
}

.chrome-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.chrome-dots span:nth-child(1) { background: #ff5f56; }
.chrome-dots span:nth-child(2) { background: #ffbd2e; }
.chrome-dots span:nth-child(3) { background: #27c93f; }

.chrome-bar {
    flex: 1;
    background: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--gray-600);
}

.extension-card {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: ext-slide-in 1s ease-out 0.5s backwards;
}

@keyframes ext-slide-in {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.ext-icon svg {
    width: 48px;
    height: 48px;
}

.ext-info {
    flex: 1;
}

.ext-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.ext-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.ext-toggle {
    width: 48px;
    height: 24px;
    background: var(--gray-300);
    border-radius: 12px;
    position: relative;
    animation: toggle-activate 0.5s ease-out 1.5s forwards;
}

.toggle-switch {
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: var(--transition);
}

@keyframes toggle-activate {
    0% { background: var(--gray-300); }
    100% { background: var(--primary); }
}

.install-progress {
    padding: 0 2rem 1rem;
    animation: progress-appear 0.5s ease-out 1.5s backwards;
}

@keyframes progress-appear {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.progress-bar {
    height: 6px;
    background: var(--primary);
    border-radius: 3px;
    width: 0;
    animation: progress-fill 1.5s ease-out 1.5s forwards;
}

@keyframes progress-fill {
    0% { width: 0; }
    100% { width: 100%; }
}

.success-check {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: check-pop 0.5s ease-out 3.5s backwards;
    z-index: 10;
}

@keyframes check-pop {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.success-check svg {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 4px 16px rgba(125, 222, 79, 0.5));
}

.settings-panel {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.setting-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    animation: setting-appear 0.5s ease-out backwards;
}

.setting-row:nth-child(1) { animation-delay: 0.5s; }
.setting-row:nth-child(2) { animation-delay: 1s; }
.setting-row:nth-child(3) { animation-delay: 1.5s; }

@keyframes setting-appear {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.setting-icon svg {
    width: 20px;
    height: 20px;
}

.setting-label {
    flex: 1;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.animated-toggle {
    width: 44px;
    height: 24px;
    background: var(--gray-300);
    border-radius: 12px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-knob {
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.animated-toggle.active {
    background: var(--primary);
}

.animated-toggle.active .toggle-knob {
    transform: translateX(20px);
}

.setting-row:nth-child(1) .animated-toggle {
    animation: toggle-on 0.3s ease-out 1s forwards;
}

.setting-row:nth-child(2) .animated-toggle {
    animation: toggle-on 0.3s ease-out 1.5s forwards;
}

@keyframes toggle-on {
    0% { background: var(--gray-300); }
    100% { background: var(--primary); }
}

.settings-preview {
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.1), rgba(125, 222, 79, 0.05));
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    color: var(--gray-800);
    animation: badge-appear 0.5s ease-out 2s backwards;
}

@keyframes badge-appear {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.preview-badge svg {
    width: 20px;
    height: 20px;
}

.creation-screen {
    padding: 1.5rem;
    position: relative;
    min-height: 300px;
    width: 100%;
    overflow: hidden;
}

.linkedin-post-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: post-appear 0.8s ease-out 0.5s backwards;
    width: 100%;
    max-width: 100%;
}

@keyframes post-appear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    animation: header-fade 0.5s ease-out 0.8s backwards;
}

@keyframes header-fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.post-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #5ab836);
}

.post-author {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.author-title {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.post-content {
    margin-bottom: 1rem;
    min-height: 80px;
    width: 100%;
    overflow: hidden;
}

.typing-animation {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    animation: typing-appear 1s ease-out 1.2s backwards;
    width: 100%;
    min-height: 60px;
}

.typed-text {
    flex: 1;
    width: 100%;
    white-space: pre-wrap;
    word-wrap: break-word;
}

@keyframes typing-appear {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.cursor-blink {
    animation: blink 0.8s step-end infinite;
    animation-delay: 1.2s;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.post-engagement {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 0.75rem;
    animation: engagement-fade 0.8s ease-out 3s backwards;
}

@keyframes engagement-fade {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.engagement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.engagement-item svg {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
    transition: var(--transition);
}

.engagement-item:hover svg {
    color: var(--primary);
    transform: scale(1.1);
}

.engagement-count {
    font-weight: 700;
    color: var(--gray-700);
}

.count-number {
    font-size: 1.125rem;
}

.views-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    animation: views-fade 0.5s ease-out 3.5s backwards;
}

@keyframes views-fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.views-indicator svg {
    width: 16px;
    height: 16px;
}

.views-count {
    font-weight: 700;
    color: var(--gray-700);
}

.ai-magic-effect {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    animation: magic-fade 2s ease-in-out 1.8s;
    pointer-events: none;
}

@keyframes magic-fade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.magic-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: particle-burst 1s ease-out infinite;
}

.magic-particle:nth-child(1) {
    animation-delay: 1.8s;
    top: 0;
    left: 50%;
}

.magic-particle:nth-child(2) {
    animation-delay: 1.6s;
    top: 50%;
    left: 100%;
}

.magic-particle:nth-child(3) {
    animation-delay: 1.7s;
    top: 100%;
    left: 50%;
}

.magic-particle:nth-child(4) {
    animation-delay: 1.8s;
    top: 50%;
    left: 0;
}

.magic-particle:nth-child(5) {
    animation-delay: 1.9s;
    top: 20%;
    left: 20%;
}

@keyframes particle-burst {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.generated-content {
    animation: content-appear 0.5s ease-out 2.5s backwards;
}

@keyframes content-appear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.content-paragraph {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.content-line {
    height: 12px;
    background: linear-gradient(90deg, var(--gray-300), var(--gray-200));
    border-radius: 6px;
    margin-bottom: 8px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-line:last-child {
    margin-bottom: 0;
}

.content-line.full {
    max-width: 100%;
}

.content-line.medium {
    max-width: 60%;
}

.content-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(125, 222, 79, 0.1);
    border-radius: 999px;
    font-weight: 600;
    color: var(--gray-700);
    animation: stat-count 1s ease-out 3s backwards;
}

@keyframes stat-count {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.stat-badge svg {
    width: 16px;
    height: 16px;
}

.stat-number {
    font-weight: 700;
    color: var(--primary);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(125, 222, 79, 0.03) 10px,
        rgba(125, 222, 79, 0.03) 20px
    );
    animation: cta-pattern 20s linear infinite;
}

@keyframes cta-pattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125, 222, 79, 0.2) 0%, transparent 70%);
    animation: cta-glow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes cta-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Connect Section */
.connect {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.connect-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.connect-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.connect-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.connect-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.connect-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-100);
}

.connect-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: 'Satoshi', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(125, 222, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23000'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px;
    padding-right: 2.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: -0.5rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 150px;
    height: 36px;
    border-radius: 5px !important;
        margin-left: -20px !important;
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(125, 222, 79, 0.1);
    border: 1px solid rgba(125, 222, 79, 0.2);
    border-radius: var(--radius-lg);
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(125, 222, 79, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-column ul li a,
.footer-column ul li span {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Contact Info Styling */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.contact-info a {
    word-break: break-word;
}

.contact-info a:hover {
    color: var(--primary);
    padding-left: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.heart {
    color: var(--primary);
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.2); }
    20%, 40% { transform: scale(0.95); }
}

/* Text Selection Styling */
::selection {
    background: var(--primary);
    color: var(--black);
}

::-moz-selection {
    background: var(--primary);
    color: var(--black);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6acc3e;
}

/* Custom Cursor Effect */
@media (hover: hover) {
    .btn-primary, .feature-card, .pricing-card {
        cursor: pointer;
        transition: var(--transition);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Tablet Navigation */
    .nav.scrolled {
        width: calc(100% - 6rem);
        left: 3rem;
        border-radius: 22px;
    }
    
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-content { 
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* How It Works - Tablet */
    .step { 
        grid-template-columns: 60px 1fr 1fr; 
        gap: 1.5rem;
    }
    .step-number { 
        font-size: 3rem;
    }
    .step-title {
        font-size: 1.75rem;
    }
    .step-description {
        font-size: 1rem;
    }
    .linkedin-mockup { 
        max-width: 350px;
    }
    .animated-browser,
    .animated-settings,
    .animated-creation {
        max-width: 350px;
    }
    
    /* Comparison Section - Tablet */
    /* Comparison Section - Tablet */
    .comparison-section {
        padding: 3.5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
        min-height: 350px;
    }
    
    .comparison-card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Reduce expansion size on tablet */
    .comparison-card:hover,
    .comparison-card:nth-child(1):hover,
    .comparison-card:nth-child(2):hover,
    .comparison-card:nth-child(3):hover {
        transform: scale(1.05) !important;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .opp-count {
        font-size: 1.25rem;
    }
    
    .sample-text {
        font-size: 0.875rem;
    }

    .expanded-header h4 {
        font-size: 0.875rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-circle {
        width: 50px;
        height: 50px;
    }
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .linkedin-mockup {
        transform: scale(0.95);
    }
    
    .demo-container {
        min-height: 420px;
    }
    
    .floating-badge {
        font-size: 0.8125rem;
        padding: 8px 14px;
    }
    
    .badge-2 {
        right: -50px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav.scrolled {
        width: calc(100% - 3rem);
        left: 1.5rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
    }
    
    .nav.scrolled .nav-container {
        padding: 0.25rem 0.5rem;
    }
    
    .nav-menu { 
        display: none;
        position: fixed;
        top: 73px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 0.5rem 1rem;
    }
    
    .nav-actions { 
        display: none; 
    }
    
    .nav-actions.active {
        display: flex;
        position: fixed;
        top: calc(73px + 220px);
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        gap: 1rem;
        animation: slideDown 0.3s ease-out 0.1s backwards;
    }
    
    .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-hamburger { 
        display: flex; 
        z-index: 1001;
    }
    
    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Section - Mobile */
    .hero {
        padding: 6rem 0 3rem;
    }
    .demo-title{
            font-size: 2rem !important;
    }
    
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual { 
        order: 2;
        margin: 50px auto;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title { 
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle { 
        margin: 0 auto 2rem;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-actions { 
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
        margin: 0 auto;
    }
    
    .hero-actions .btn {
        width: auto;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-stats { 
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    /* LinkedIn Mockup - Mobile */
    .linkedin-mockup { 
        max-width: 100%;
        width: 100%;
        transform: scale(1);
        margin: 0;
    }
    
    .linkedin-window { 
        padding: 1rem;
        width: 100%;
    }
    
    .window-header {
        padding: 0.75rem;
    }
    
    .linkedin-content {
        padding: 1rem;
    }
    
    .demo-container {
        min-height: 400px;
        width: 100%;
    }
    
    /* Composer Styles - Mobile */
    .post-composer-simple,
    .comment-composer-simple {
        padding: 1rem;
    }
    
    .composer-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .user-avatar-circle {
        width: 40px;
        height: 40px;
    }
    
    .composer-input-field {
        width: 100%;
    }
    
    .ai-button {
        align-self: flex-start;
    }
    
    .ai-suggestions-panel {
        padding: 1rem;
    }
    
    /* Rewriter - Mobile */
    .rewriter-simple {
        padding: 1rem;
    }
    
    .rewrite-header {
        font-size: 14px;
    }
    
    .text-box {
        padding: 12px;
    }
    
    .text-sample {
        font-size: 12px;
    }
    
    /* Job Alerts - Mobile */
    .job-alerts-simple {
        padding: 1rem;
    }
    
    .job-item {
        padding: 10px;
    }
    
    .job-icon {
        font-size: 20px;
    }
    
    .job-title {
        font-size: 13px;
    }
    
    .job-meta {
        font-size: 11px;
    }
    
    /* Floating Badges - Mobile */
    .floating-badge { 
        padding: 0.4rem 0.6rem; 
        font-size: 0.7rem;
        position: absolute;
        gap: 4px;
    }
    
    .floating-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .badge-2 {
        right: 5px;
        top: 80px;
    }
    
    .badge-3 {
        top: 5px;
        left: 5px;
    }
    
    .badge-4 {
        bottom: 5px;
        left: 5px;
    }
    
    .ai-suggestions { padding: 0.75rem; }
    .suggestion-item { padding: 0.75rem; font-size: 0.8125rem; }
    
    /* Scroll Indicator - Mobile */
    .scroll-indicator {
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .scroll-indicator:hover {
        transform: translateX(-50%) translateY(-3px);
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .scroll-icon {
        width: 24px;
        height: 38px;
    }
    
    .features-grid { grid-template-columns: 1fr; }
    
    /* How It Works - Mobile */
    .step { 
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: center;
    }
    .step-number { 
        text-align: center;
        font-size: 3rem;
        margin: 0 auto;
    }
    .step:nth-child(even) .step-content,
    .step:nth-child(even) .step-visual {
        order: initial;
    }
    .step-content {
        padding: 0 1rem;
    }
    .step-title { 
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    .step-description { 
        font-size: 1rem;
        line-height: 1.6;
    }
    .step-visual {
        padding: 0 1rem;
    }
    
    /* LinkedIn Mockup - Mobile */
    .linkedin-mockup { max-width: 100%; }
    .linkedin-window { padding: 1rem; }
    .ai-suggestions { padding: 0.75rem; }
    .suggestion-item { padding: 0.75rem; font-size: 0.8125rem; }
    .floating-badge { 
        padding: 0.5rem 1rem; 
        font-size: 0.75rem;
    }
    
    /* Animated Components - Mobile */
    .animated-browser, .animated-settings, .animated-creation {
        max-width: 100%;
        margin: 0 auto;
    }
    .browser-chrome { 
        padding: 0.625rem; 
        flex-direction: column;
        gap: 0.5rem;
    }
    .chrome-bar { 
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        text-align: center;
    }
    .extension-card { 
        padding: 1rem; 
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
    }
    .ext-icon {
        flex-shrink: 0;
    }
    .ext-info {
        flex: 1;
        min-width: 0;
    }
    .ext-name { 
        font-size: 0.9375rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ext-desc { 
        font-size: 0.8125rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .settings-panel { 
        padding: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    .setting-row { 
        padding: 1rem !important; 
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        text-align: center !important;
    }
    .setting-icon {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
    }
    .setting-icon svg {
        width: 24px;
        height: 24px;
    }
    .setting-label { 
        font-size: 0.875rem !important;
        width: 100%;
        text-align: center !important;
        flex: none !important;
    }
    .animated-toggle {
        flex-shrink: 0;
    }
    
    .creation-screen { padding: 1rem; min-height: 250px; }
    .typing-animation { font-size: 0.9375rem; }
    .content-stats { 
        gap: 0.5rem;
        justify-content: center;
    }
    .stat-badge { 
        padding: 0.4rem 0.75rem; 
        font-size: 0.8125rem;
    }
    
    /* Testimonials - Mobile */
    .testimonials-grid { 
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-text { font-size: 0.875rem; }
    .author-avatar { width: 40px; height: 40px; font-size: 1rem; }
    .author-name { font-size: 0.875rem; }
    .author-title { font-size: 0.8125rem; }
    
    /* Comparison Section - Mobile */
    /* Comparison Section - Mobile */
    .comparison-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
        min-height: auto;
        width: 300px !important;
    }
    
    .card-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    /* Growth badge mobile positioning */
    .growth-badge {
        top: -12px;
        right: 10px;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    /* Disable hover expansion on mobile */
    .comparison-card:hover,
    .comparison-card:nth-child(1):hover,
    .comparison-card:nth-child(2):hover,
    .comparison-card:nth-child(3):hover {
        transform: translateY(-3px) !important;
    }

    .card-expanded-view {
        display: none !important;
    }
    
    /* Card Comparison - Stack vertically */
    .card-comparison {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .comparison-side {
        width: 100%;
    }
    
    /* Rotate arrow to point down */
    .comparison-arrow {
        transform: rotate(90deg);
        width: 28px;
        height: 28px;
        margin: 0.5rem auto;
    }
    
    /* Side labels */
    .side-label {
        font-size: 0.8125rem;
        padding: 0.5rem 0.625rem;
        margin-bottom: 0.75rem;
    }
    
    .side-label .label-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Metric Display */
    .metric-display {
        padding: 0.875rem;
        gap: 0.625rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
    }
    
    /* Opportunity Display */
    .opportunity-display {
        gap: 0.625rem;
        padding: 0.25rem;
    }
    
    .opp-item {
        padding: 0.625rem;
        gap: 0.625rem;
    }
    
    .opp-item svg {
        width: 20px;
        height: 20px;
    }
    
    .opp-count {
        font-size: 1.25rem;
    }
    
    .opp-label {
        font-size: 0.6875rem;
    }
    
    /* Writing Sample */
    .writing-sample {
        padding: 0.875rem;
        min-height: 120px !important;
    }
    
    .sample-text {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .quality-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.625rem;
        margin-top: 0.5rem;
    }
    
    /* LinkedIn Post Preview - Mobile */
    .linkedin-post-preview {
        padding: 1.25rem;
    }
    .post-avatar {
        width: 40px;
        height: 40px;
    }
    .author-name {
        font-size: 0.9375rem;
    }
    .author-title {
        font-size: 0.8125rem;
    }
    .typing-animation {
        font-size: 0.875rem;
    }
    .post-engagement {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .engagement-item {
        font-size: 0.8125rem;
    }
    .count-number {
        font-size: 1rem;
    }
    .views-count {
        font-size: 1.125rem;
    }
    
    .faq-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 2rem; }
    .cta-subtitle { font-size: 1rem; }
    .cta-actions { flex-direction: column; }
    
    /* Footer - Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content { 
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 1.5rem;
    }
    
    /* Connect Section - Mobile */
    .connect-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .connect-title { font-size: 1.875rem; }
    .connect-description { font-size: 1rem; }
    .connect-form-wrapper { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .step-number { font-size: 2rem; }
    .step-title { font-size: 1.25rem; }
    
    /* LinkedIn Mockup - Small Mobile */
    .linkedin-window { padding: 0.75rem; }
    .post-composer { padding: 0.75rem; }
    .typing-text { font-size: 0.75rem; }
    .ai-button { padding: 0.4rem 0.75rem; font-size: 0.75rem; }
    .suggestion-item { padding: 0.5rem; }
    .floating-badge { display: none; } /* Hide on very small screens */
    
    /* Comparison Section - Small Mobile */
    .comparison-section {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .comparison-grid {
        padding: 0 0.75rem;
        gap: 1.25rem;
    }
    
    .comparison-card {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .opp-count {
        font-size: 1.125rem;
    }
    
    .sample-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .side-label {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }
    
    .metric-display,
    .writing-sample {
        padding: 0.75rem;
    }
    
    .comparison-arrow {
        width: 24px;
        height: 24px;
    }
    
    .cta-title { font-size: 1.75rem; }
    .btn-lg { padding: 0.875rem 2rem; font-size: 0.9375rem; 
    justify-content: center !important;
    }
}

/* ==========================================================================
   Sequential Scene Animation System
   ========================================================================== */

/* Demo Container & Scene Management */
.demo-container {
    position: relative;
    min-height: 480px;
    width: 100%;
}

.demo-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    transform: translateY(30px);
}

.demo-scene.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Feature Indicator - Hidden during transitions */
.feature-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.05) 0%, rgba(125, 222, 79, 0.02) 100%);
    border-radius: 50px;
    border: 1px solid rgba(125, 222, 79, 0.1);
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-indicator.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-indicator.in-transition {
    opacity: 0;
    pointer-events: none;
}

.indicator-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    border: 2px solid transparent;
    transform: scale(0.95);
}

.indicator-step.active {
    opacity: 1;
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 20px rgba(125, 222, 79, 0.4);
    transform: scale(1);
    border-color: var(--primary);
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    transition: all 0.3s ease;
}

.indicator-step.active .step-dot {
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.indicator-step span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Active Feature Name Display */
.active-feature-name {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 20px;
    min-height: 30px;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.active-feature-name.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scene 1 & 2: Simplified Design (Matching Screenshot) */
.post-composer-simple,
.comment-composer-simple {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.composer-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.user-avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #7dde4f;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(125, 222, 79, 0.3);
}

.composer-input-field {
    flex: 1;
    padding: 14px 18px;
    background: #f3f2ef;
    border-radius: 24px;
    border: 1px solid #e0dfdc;
    transition: all 0.3s ease;
}

.composer-input-field:hover {
    background: #e9e8e5;
    border-color: #7dde4f;
}

.input-placeholder {
    color: #666666;
    font-size: 15px;
    font-weight: 500;
}

.ai-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #7dde4f 0%, #6bc943 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(125, 222, 79, 0.3);
}

.ai-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 222, 79, 0.4);
}

.ai-button svg {
    animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ai-suggestions-panel {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #e5e5e5;
}

.suggestions-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.suggestions-header svg {
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

.suggestions-header span {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.2px;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #7dde4f;
    border-radius: 50%;
    margin-left: auto;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(125, 222, 79, 0.6);
}

@keyframes pulse-dot {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.3); 
        opacity: 0.7;
    }
}

.suggestion-skeleton {
    margin-bottom: 16px;
}

.skeleton-line {
    height: 12px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    border-radius: 6px;
    margin-bottom: 10px;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-line.line-1 {
    width: 100%;
}

.skeleton-line.line-2 {
    width: 85%;
}

.skeleton-line.line-3 {
    width: 60%;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.suggestion-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

.action-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.action-icon:hover {
    background: #7dde4f;
    border-color: #7dde4f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 222, 79, 0.3);
}

.action-icon:hover svg {
    stroke: white;
}

.action-icon svg {
    transition: all 0.3s ease;
    stroke: #666666;
}

/* Floating Badges (Matching Screenshot) */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.floating-badge svg {
    color: #7dde4f;
    flex-shrink: 0;
}

.badge-2 {
    top: 140px;
    right: -60px;
    animation-delay: 0s;
}

.badge-3 {
        left: -30px;
    animation-delay: 0.5s;
    bottom: 456px;
}

.badge-4 {

   left: -35px;
    animation-delay: 1s;
    padding: 8px 14px;
    top: 350px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Scene 3: Text Rewriter (Simplified) */
.rewriter-simple {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.rewrite-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
    color: #333333;
}

.rewrite-header svg {
    color: #7dde4f;
    animation: rotate-slow 3s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rewriting-dots {
    margin-left: auto;
    display: flex;
    gap: 4px;
    align-items: center;
}

.rewriting-dots span {
    width: 6px;
    height: 6px;
    background: #7dde4f;
    border-radius: 50%;
    animation: dot-bounce 1.4s ease-in-out infinite;
}

.rewriting-dots span:nth-child(1) {
    animation-delay: 0s;
}

.rewriting-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.rewriting-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dot-bounce {
    0%, 60%, 100% { 
        transform: translateY(0);
        opacity: 0.4;
    }
    30% { 
        transform: translateY(-8px);
        opacity: 1;
    }
}

.rewrite-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rewrite-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-box {
    flex: 1;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e5e5;
    min-height: 60px;
}

.text-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.text-sample {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-box.before .text-sample {
    color: #dc3545;
    font-weight: 500;
}

.text-box.after .text-sample {
    color: #28a745;
    font-weight: 600;
}

.text-sample.typing-animation::after {
    content: '';
    animation: dots-typing 1.5s steps(4) infinite;
}

@keyframes dots-typing {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: ''; }
}

.rewrite-arrow {
    flex-shrink: 0;
    animation: pulse-scale 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

@keyframes pulse-scale {
    0%, 100% { 
        transform: scale(1) translateY(0);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.2) translateY(4px);
        opacity: 1;
    }
}

.rewrite-arrow svg {
    display: block;
}

/* Scene 4: Job Alerts (Simplified) */
.job-alerts-simple {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.alerts-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
    color: #333333;
}

.alerts-header svg {
    color: #7dde4f;
}

.alert-badge {
    margin-left: auto;
    background: #dc3545;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    animation: pulse 2s ease-in-out infinite;
}

.job-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.job-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-30px);
}

.demo-scene.scene-4.active .job-item {
    animation: slideInJob 0.5s ease-out forwards;
}

.demo-scene.scene-4.active .job-item:nth-child(1) {
    animation-delay: 0.3s;
}

.demo-scene.scene-4.active .job-item:nth-child(2) {
    animation-delay: 0.8s;
}

.demo-scene.scene-4.active .job-item:nth-child(3) {
    animation-delay: 1.3s;
}

@keyframes slideInJob {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.job-item:hover {
    background: rgba(125, 222, 79, 0.05);
    border-color: #7dde4f;
    transform: translateX(4px);
}

.job-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.job-info {
    flex: 1;
    min-width: 0;
}

.job-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-meta {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Scene 1: AI Post Writing (OLD - Keep for compatibility) */
.post-composer-demo {
    background: white;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(125, 222, 79, 0.1);
}

.composer-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.composer-input {
    flex: 1;
    min-height: 70px;
}

.typing-text-demo {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    min-height: 60px;
    font-weight: 500;
}

.typing-text-demo::after {
    content: '|';
    animation: blink-cursor 1s infinite;
    margin-left: 3px;
    color: var(--primary);
    font-weight: 700;
}

@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.ai-writing-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.15) 0%, rgba(125, 222, 79, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(125, 222, 79, 0.2);
}

.ai-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(125, 222, 79, 0.3);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(125, 222, 79, 0.3); transform: scale(1); }
    50% { box-shadow: 0 6px 20px rgba(125, 222, 79, 0.6); transform: scale(1.05); }
}

.ai-writing-indicator span {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2px;
}

.writing-progress {
    width: 140px;
    height: 5px;
    background: rgba(125, 222, 79, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #6bc943 100%);
    border-radius: 10px;
    animation: progress-grow 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(125, 222, 79, 0.5);
}

@keyframes progress-grow {
    0% { width: 0%; }
    100% { width: 100%; }
}

.post-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.stat {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.stat:hover {
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.1) 0%, rgba(125, 222, 79, 0.05) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(125, 222, 79, 0.2);
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--primary);
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.stat-value {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Scene 2: Comment Suggestions */
.comment-demo {
    background: white;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(125, 222, 79, 0.1);
}

.linkedin-post-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.author-title {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.post-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
    font-weight: 500;
}

.suggestion-header-demo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.suggestion-header-demo svg {
    animation: icon-rotate 3s linear infinite;
}

@keyframes icon-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.comment-options-demo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-option-demo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.comment-option-demo:hover {
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.15) 0%, rgba(125, 222, 79, 0.05) 100%);
    transform: translateX(6px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(125, 222, 79, 0.2);
}

.option-icon-svg {
    flex-shrink: 0;
    color: var(--primary);
    animation: icon-bounce 2s ease-in-out infinite;
}

.option-content {
    flex: 1;
}

.option-text-typing {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 8px;
    line-height: 1.6;
    min-height: 22px;
    font-weight: 500;
}

.option-text-typing::after {
    content: '|';
    animation: blink-cursor 1s infinite;
    margin-left: 2px;
    color: var(--primary);
}

.option-tone {
    font-size: 11px;
    color: var(--gray-600);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.use-button {
    background: linear-gradient(135deg, var(--primary) 0%, #6bc943 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(125, 222, 79, 0.3);
}

.use-button:hover {
    background: linear-gradient(135deg, #6bc943 0%, #5ab836 100%);
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 6px 20px rgba(125, 222, 79, 0.5);
}

/* Scene 3: Text Rewriter */
.rewriter-demo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.rewrite-box {
    background: white;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.rewrite-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.box-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.rewrite-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 16px;
    min-height: 60px;
    font-weight: 500;
}

.typing-effect {
    overflow: hidden;
    white-space: pre-wrap;
}

.typing-effect::after {
    content: '|';
    animation: blink-cursor 1s infinite;
    margin-left: 2px;
}

.quality-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quality-indicator.low {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
}

.quality-indicator.high {
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.15) 0%, rgba(125, 222, 79, 0.05) 100%);
    border: 1px solid var(--primary);
}

.quality-bar {
    width: 45px;
    height: 4px;
    border-radius: 10px;
    animation: bar-grow 1s ease-out;
}

@keyframes bar-grow {
    from { width: 0; }
    to { width: 45px; }
}

.low .quality-bar {
    background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
}

.high .quality-bar {
    background: linear-gradient(90deg, var(--primary) 0%, #6bc943 100%);
}

.quality-text {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.low .quality-text {
    color: #856404;
}

.high .quality-text {
    color: #155724;
}

.transform-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.magic-wand {
    position: relative;
    animation: wand-spin 4s ease-in-out infinite;
}

@keyframes wand-spin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: sparkle-float 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}

.sparkle:nth-child(1) {
    top: -10px;
    left: 50%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 50%;
    right: -10px;
    animation-delay: 0.4s;
}

.sparkle:nth-child(3) {
    bottom: -10px;
    left: 30%;
    animation-delay: 0.8s;
}

@keyframes sparkle-float {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

.transform-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-bar-demo {
    width: 100px;
    height: 4px;
    background: rgba(125, 222, 79, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-fill-demo {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #6bc943 100%);
    border-radius: 10px;
    animation: progress-grow 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(125, 222, 79, 0.5);
}

.transform-text {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: text-pulse 2s ease-in-out infinite;
}

@keyframes text-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Scene 4: Job Alerts */
.job-alerts-demo {
    background: white;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(125, 222, 79, 0.1);
}

.alert-notification {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.15) 0%, rgba(125, 222, 79, 0.05) 100%);
    border-radius: 14px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 16px rgba(125, 222, 79, 0.2);
}

.notification-icon {
    position: relative;
    animation: bell-ring 3s ease-in-out infinite;
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0deg); }
    5%, 15% { transform: rotate(-15deg); }
    10%, 20% { transform: rotate(15deg); }
}

.notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-badge 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    border: 2px solid white;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.notification-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.notification-subtitle {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.job-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 18px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(125, 222, 79, 0.1), transparent);
    transition: left 0.5s ease;
}

.job-card:hover::before {
    left: 100%;
}

.job-card:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 12px 36px rgba(125, 222, 79, 0.2);
    transform: translateY(-4px) scale(1.01);
}

.job-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.job-tag.urgent {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    animation: urgent-pulse 2s ease-in-out infinite;
}

@keyframes urgent-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.job-tag:not(.urgent) {
    background: linear-gradient(135deg, rgba(125, 222, 79, 0.2) 0%, rgba(125, 222, 79, 0.1) 100%);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.job-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.job-company {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 12px;
    font-weight: 600;
}

.job-details {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.detail {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 600;
}

.job-keywords {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.keyword {
    padding: 5px 12px;
    background: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid rgba(125, 222, 79, 0.3);
    transition: all 0.3s ease;
}

.keyword:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 222, 79, 0.3);
}

/* ==========================================================================
   End Sequential Scene Animation System
   ========================================================================== */

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}
