/* ===== FREE VERSION SPECIFIC STYLES ===== */

/* ===== HERO SECTION ===== */
.free-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding-top: 80px;
}

[data-theme="dark"] .free-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.free-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.free-hero .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.float-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.float-4 {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.free-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

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

.free-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.free-hero .hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

[data-theme="dark"] .feature-item {
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item span:last-child {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.btn-primary-large {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.free-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.free-hero .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.free-hero .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyber-blue);
    font-family: var(--font-mono);
    display: block;
}

.free-hero .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===== DEMO SECTION ===== */
.demo-section {
    padding: 50px 0;
    background: var(--bg-secondary);
}

[data-theme="dark"] .demo-section {
    background: var(--bg-secondary);
}

.demo-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.demo-chat {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .demo-chat {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header {
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.usage-counter {
    font-size: 0.875rem;
    opacity: 0.9;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: var(--accent-gradient);
}

.user-message .message-avatar {
    background: var(--primary-color);
    color: white;
}

.message-content {
    background: var(--bg-secondary);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    line-height: 1.5;
}

[data-theme="dark"] .message-content {
    background: var(--bg-secondary);
}

.user-message .message-content {
    background: var(--primary-color);
    color: white;
}

.chat-input-container {
    border-top: 1px solid var(--bg-secondary);
    padding: 1.5rem;
}

.chat-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

#demo-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--bg-secondary);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

#demo-input:focus {
    border-color: var(--primary-color);
}

.send-button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-button:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.char-counter {
    font-family: var(--font-mono);
}

.powered-by {
    font-weight: 500;
}

.demo-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-feature-item {
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .demo-feature-item {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon-large {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.demo-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.demo-feature-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 50px 0;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .step-item {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-mono);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-chat {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 1rem;
    min-width: 180px;
}

[data-theme="dark"] .visual-chat {
    background: var(--bg-secondary);
}

.visual-message {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.4;
}

.visual-message.user {
    background: var(--primary-color);
    color: white;
    margin-left: 1rem;
}

.visual-message.bot {
    background: var(--bg-primary);
    color: var(--text-primary);
    margin-right: 1rem;
}

.visual-processing {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.processing-dots {
    display: flex;
    gap: 0.5rem;
}

.processing-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: processingPulse 1.5s infinite;
}

.processing-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.processing-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes processingPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* ===== LIMITATIONS SECTION ===== */
.limitations-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

[data-theme="dark"] .limitations-section {
    background: var(--bg-secondary);
}

.limitations-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
}

.limitations-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .comparison-table {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-secondary);
}

[data-theme="dark"] .comparison-header {
    background: var(--bg-secondary);
}

.plan-column {
    padding: 2rem;
    text-align: center;
}

.plan-column.featured {
    background: var(--accent-gradient);
    color: white;
    position: relative;
}

.plan-column.featured::before {
    content: '⭐ RECOMENDADO';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

.plan-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-mono);
}

.comparison-features {
    padding: 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bg-secondary);
    align-items: center;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 500;
    color: var(--text-primary);
}

.feature-free,
.feature-pro {
    text-align: center;
    font-weight: 600;
}

.feature-free {
    color: var(--text-light);
}

.feature-pro {
    color: var(--primary-color);
}

.comparison-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.comparison-cta .btn-outline,
.comparison-cta .btn-primary {
    border-radius: 0;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.comparison-cta .btn-outline {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.comparison-cta .btn-outline:hover {
    background: var(--bg-primary);
}

.comparison-cta .btn-primary {
    background: var(--accent-gradient);
    color: white;
}

.comparison-cta .btn-primary:hover {
    transform: none;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 50px 0;
}

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

.testimonial-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .testimonial-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 50px 0;
    background: var(--bg-secondary);
    text-align: center;
}

[data-theme="dark"] .final-cta {
    background: var(--bg-secondary);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-note {
    color: var(--text-light);
    font-style: italic;
}

/* ===== FOOTER ADJUSTMENTS ===== */
.footer-links-inline {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links-inline a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links-inline a:hover {
    color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .step-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .free-hero {
        padding-top: 70px;
        min-height: 90vh;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .free-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .free-hero .stat-item {
        min-width: 200px;
    }
    
    .chat-messages {
        height: 300px;
    }
    
    .comparison-header {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .feature-name {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .comparison-cta {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links-inline {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .free-hero .hero-title {
        font-size: 2rem;
    }
    
    .free-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .demo-chat {
        margin: 0 -1rem;
        border-radius: var(--radius-lg);
    }
    
    .chat-messages {
        height: 250px;
        padding: 1rem;
    }
    
    .step-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .limitations-info h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.typing-indicator::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.send-button:focus,
#demo-input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary-large:focus,
.btn-secondary-outline:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== ANIMATIONS ===== */
.demo-feature-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.demo-feature-item:nth-child(1) { animation-delay: 0.1s; }
.demo-feature-item:nth-child(2) { animation-delay: 0.2s; }
.demo-feature-item:nth-child(3) { animation-delay: 0.3s; }
.demo-feature-item:nth-child(4) { animation-delay: 0.4s; }

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

/* ===== DARK THEME SPECIFIC ADJUSTMENTS ===== */
[data-theme="dark"] .hero-badge {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

[data-theme="dark"] .feature-item {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .demo-chat {
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .testimonial-card {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .step-item {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

/* ===== WORKFLOW SECTION ===== */
.workflow-section {
    padding: 50px 0;
    background: var(--bg-primary);
}

[data-theme="dark"] .workflow-section {
    background: var(--bg-dark);
}

.workflow-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-demo {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .workflow-demo {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.workflow-icon {
    font-size: 1.5rem;
}

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

.workflow-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FF88;
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: #00FF88;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.workflow-step {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-node {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    min-width: 250px;
}

[data-theme="dark"] .step-node {
    background: var(--bg-dark);
}

.step-node.trigger {
    border-color: #00FF88;
}

.step-node.process {
    border-color: var(--primary-color);
}

.step-node.decision {
    border-color: #FFB800;
}

.step-node.action.high-priority {
    border-color: #FF4757;
}

.step-node.action.nurture {
    border-color: #5352ED;
}

.step-node.ai-model {
    border-color: #FF6B6B;
}

.step-node.tool.get-bookings {
    border-color: #4ECDC4;
}

.step-node.tool.make-bookings {
    border-color: #45B7D1;
}

.step-node.ai-model {
    border-color: #FF6B6B;
}

.step-node.tool.get-bookings {
    border-color: #4ECDC4;
}

.step-node.tool.make-bookings {
    border-color: #45B7D1;
}

.step-node:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.node-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.node-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.node-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0.5rem 0;
    text-align: center;
}

.workflow-branches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.branch-high,
.branch-low {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.workflow-arrow.up {
    color: #FF4757;
}

.workflow-arrow.down {
    color: #5352ED;
}

.workflow-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-highlight {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

[data-theme="dark"] .feature-highlight {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-highlight:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-highlight .feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.feature-highlight .feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.feature-highlight .feature-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ===== WORKFLOW RESPONSIVE ===== */
@media (max-width: 768px) {
    .workflow-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .workflow-branches {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-node {
        min-width: 200px;
        padding: 1rem;
    }
    
    .workflow-features {
        grid-template-columns: 1fr;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-highlight .feature-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .workflow-demo {
        padding: 1.5rem;
        margin: 0 -1rem 2rem -1rem;
        border-radius: var(--radius-lg);
    }
    
    .step-node {
        min-width: 180px;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .node-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .feature-highlight {
        padding: 1rem;
    }
}

/* ===== N8N PROJECT SECTION ===== */
.n8n-project-section {
    padding: 50px 0;
    background: var(--bg-secondary);
}

[data-theme="dark"] .n8n-project-section {
    background: var(--bg-secondary);
}

.n8n-container {
    max-width: 1200px;
    margin: 0 auto;
}

.n8n-embed-placeholder {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px dashed rgba(139, 92, 246, 0.3);
    text-align: center;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .n8n-embed-placeholder {
    background: var(--bg-dark);
    border: 2px dashed rgba(139, 92, 246, 0.3);
}

.n8n-embed-placeholder:hover {
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.placeholder-content {
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.placeholder-options {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.placeholder-options li {
    background: rgba(139, 92, 246, 0.1);
    padding: 1rem;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all var(--transition-normal);
}

.placeholder-options li:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.placeholder-instructions {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    text-align: left;
}

[data-theme="dark"] .placeholder-instructions {
    background: var(--bg-secondary);
}

.placeholder-instructions h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.instruction-code {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    overflow-x: auto;
}

[data-theme="dark"] .instruction-code {
    background: rgba(0, 0, 0, 0.3);
}

.instruction-code code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: #00FF88;
    line-height: 1.6;
    white-space: pre-wrap;
}

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

.n8n-example {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 400px;
}

[data-theme="dark"] .n8n-example {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== WORKFLOW IMAGE STYLES ===== */
.workflow-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.workflow-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.custom-workflow {
    width: 100%;
    min-height: 400px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .custom-workflow {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== N8N RESPONSIVE ===== */
@media (max-width: 768px) {
    .n8n-embed-placeholder {
        padding: 2rem;
        margin: 0 -1rem 2rem -1rem;
        border-radius: var(--radius-lg);
    }
    
    .placeholder-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .placeholder-instructions {
        padding: 1.5rem;
        margin: 1.5rem -1rem 0 -1rem;
        border-radius: var(--radius-lg);
    }
    
    .instruction-code {
        padding: 1rem;
        font-size: 0.75rem;
    }
    
    .n8n-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .placeholder-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .placeholder-content h3 {
        font-size: 1.25rem;
    }
    
    .placeholder-content p {
        font-size: 1rem;
    }
    
    .placeholder-options li {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .instruction-code code {
        font-size: 0.75rem;
    }
}

/* ===== IFRAME RESPONSIVE ===== */
.n8n-container iframe {
    width: 100%;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: white;
}

/* ===== PLACEHOLDER ANIMATIONS ===== */
.placeholder-icon {
    animation: placeholderPulse 3s ease-in-out infinite;
}

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

.placeholder-options li {
    animation: fadeInUp 0.6s ease forwards;
}

.placeholder-options li:nth-child(1) { animation-delay: 0.1s; }
.placeholder-options li:nth-child(2) { animation-delay: 0.2s; }
.placeholder-options li:nth-child(3) { animation-delay: 0.3s; }
.placeholder-options li:nth-child(4) { animation-delay: 0.4s; }

/* ===== N8N WORKFLOW VIEWER ===== */
.n8n-workflow-viewer {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

[data-theme="dark"] .n8n-workflow-viewer {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .workflow-viewer-header {
    background: var(--bg-secondary);
}

.workflow-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.workflow-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.workflow-status-badge {
    background: rgba(0, 255, 136, 0.1);
    color: #00FF88;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.workflow-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
}

[data-theme="dark"] .control-btn {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.control-btn svg {
    width: 16px;
    height: 16px;
}

.workflow-canvas {
    min-height: 500px;
    background: #f8f9fa;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.1) 1px, transparent 0);
    background-size: 20px 20px;
}

[data-theme="dark"] .workflow-canvas {
    background: #1a1a1a;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
}

.workflow-placeholder {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(139, 92, 246, 0.3);
    max-width: 400px;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .workflow-placeholder {
    background: rgba(26, 32, 44, 0.9);
    border: 2px dashed rgba(139, 92, 246, 0.3);
}

.workflow-placeholder:hover {
    border-color: rgba(139, 92, 246, 0.6);
    transform: scale(1.02);
}

.placeholder-message .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    animation: placeholderPulse 3s ease-in-out infinite;
}

.placeholder-message h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.placeholder-message p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.placeholder-options-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.option-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all var(--transition-fast);
}

.option-tag:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
}

.workflow-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--text-light);
}

[data-theme="dark"] .workflow-footer {
    background: var(--bg-secondary);
}

.zoom-info {
    font-family: var(--font-mono);
    font-weight: 600;
}

.workflow-stats {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.workflow-stats span {
    white-space: nowrap;
}

/* ===== WORKFLOW VIEWER RESPONSIVE ===== */
@media (max-width: 768px) {
    .workflow-viewer-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .workflow-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .workflow-info h3 {
        font-size: 1rem;
    }
    
    .workflow-controls {
        justify-content: center;
    }
    
    .workflow-canvas {
        min-height: 400px;
    }
    
    .workflow-placeholder {
        padding: 2rem;
        margin: 1rem;
        max-width: none;
    }
    
    .placeholder-message .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .placeholder-message h4 {
        font-size: 1.125rem;
    }
    
    .workflow-footer {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    .workflow-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .workflow-viewer-header {
        padding: 0.75rem;
    }
    
    .workflow-info h3 {
        font-size: 0.875rem;
    }
    
    .workflow-status-badge {
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
    }
    
    .control-btn {
        width: 28px;
        height: 28px;
    }
    
    .control-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .workflow-canvas {
        min-height: 300px;
        background-size: 15px 15px;
    }
    
    .workflow-placeholder {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .placeholder-message .placeholder-icon {
        font-size: 2rem;
    }
    
    .placeholder-message h4 {
        font-size: 1rem;
    }
    
    .placeholder-options-compact {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .option-tag {
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
    }
    
    .workflow-footer {
        font-size: 0.625rem;
        padding: 0.75rem;
    }
}

/* ===== WORKFLOW VIEWER ANIMATIONS ===== */
.workflow-canvas {
    animation: canvasLoad 1s ease-out;
}

@keyframes canvasLoad {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.control-btn {
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.control-btn:active::before {
    width: 100%;
    height: 100%;
}

/* ===== WORKFLOW CONTENT STYLES ===== */
.workflow-canvas iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    background: white;
}

.workflow-canvas img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.workflow-canvas .custom-content {
    width: 100%;
    height: 100%;
    padding: 2rem;
    overflow: auto;
}

/* ===== INDUSTRY VERSATILITY SECTION ===== */
.industry-versatility {
    margin-top: 3rem;
}

.versatility-note {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .versatility-note {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.versatility-note:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.note-icon {
    font-size: 3rem;
    background: var(--accent-gradient);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.note-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.note-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
}

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

.industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all var(--transition-normal);
}

[data-theme="dark"] .industry-item {
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.industry-item:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.industry-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.industry-item span:last-child {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ===== INDUSTRY VERSATILITY RESPONSIVE ===== */
@media (max-width: 768px) {
    .versatility-note {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .note-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        align-self: center;
    }
    
    .note-content h4 {
        font-size: 1.25rem;
    }
    
    .note-content p {
        font-size: 1rem;
    }
    
    .industry-examples {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .industry-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .industry-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .industry-item span:last-child {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .industry-versatility {
        margin: 2rem -1rem 0 -1rem;
    }
    
    .versatility-note {
        padding: 1rem;
        border-radius: var(--radius-lg);
    }
    
    .note-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .note-content h4 {
        font-size: 1.125rem;
    }
    
    .industry-examples {
        grid-template-columns: 1fr;
    }
    
    .industry-item {
        padding: 0.5rem;
    }
}

/* ===== WORKFLOW CAPABILITIES ===== */
.workflow-capabilities {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-capabilities h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    text-align: center;
}

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

.capability-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.capability-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.capability-icon {
    font-size: 1.25rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.capability-item span:last-child {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== BRANCH TOOLS STYLING ===== */
.branch-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.branch-tools .workflow-arrow {
    font-size: 1.25rem;
    margin: 0.25rem 0;
}

.branch-tools .workflow-arrow.up {
    color: #4ECDC4;
}

.branch-tools .workflow-arrow.down {
    color: #45B7D1;
}

/* ===== RESPONSIVE CAPABILITIES ===== */
@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .capability-item {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .capability-icon {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-capabilities {
        margin: 1rem -1rem 0 -1rem;
        border-radius: var(--radius-md);
    }
}
