/**
 * Professional Home Page Styles - Ultra Modern Design
 * @package SociAir Pro
 * @version 2.0.0
 */

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0e27;
    --light-bg: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   Hero Section Pro
   ============================================ */

.hero-section-pro {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content-pro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text-pro {
    animation: fade-slide-up 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 18px;
    animation: pulse-scale 2s ease-in-out infinite;
}

.hero-title-pro {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gradient-text-pro {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text-pro::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle-pro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta-pro {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-pro:hover::before {
    transform: translateX(100%);
}

.btn-primary-pro {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-ghost-pro {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-ghost-pro:hover {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.hero-stats-pro {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item-pro {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item-pro strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item-pro span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual-pro {
    position: relative;
    animation: fade-slide-left 1s ease-out 0.3s both;
}

.dashboard-mockup {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-header-pro {
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.header-left {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.header-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.tab.active {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.mockup-content-pro {
    padding: 24px;
    min-height: 400px;
}

.chat-interface {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    height: 360px;
}

.chat-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.chat-item:hover {
    background: #f9fafb;
}

.chat-item.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.chat-avatar.fb {
    background: linear-gradient(135deg, #1877f2 0%, #0c5fcd 100%);
}

.chat-avatar.ig {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
}

.chat-avatar.tt {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.chat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.chat-info strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-info span {
    font-size: 11px;
    color: var(--text-secondary);
}

.badge-count {
    background: #667eea;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.chat-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: var(--radius-md);
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 12px;
    animation: slide-in-message 0.4s ease-out;
}

.message.outgoing {
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    flex-shrink: 0;
}

.msg-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 70%;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    position: relative;
}

.message.outgoing .msg-bubble {
    background: var(--primary-gradient);
    color: white;
}

.ai-powered .msg-bubble {
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.ai-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 8px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 16px;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ca3af;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: float-card 6s ease-in-out infinite;
}

.float-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    filter: blur(20px);
    opacity: 0.6;
    z-index: -1;
}

.card-1 {
    top: 10%;
    right: -10%;
    background: linear-gradient(135deg, #1877f2 0%, #0c5fcd 100%);
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    right: -5%;
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
    animation-delay: 2s;
}

.card-3 {
    top: 50%;
    left: -10%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    animation-delay: 4s;
}

.card-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid currentColor;
    border-radius: inherit;
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

/* ============================================
   Brands Section
   ============================================ */

.brands-section-pro {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brands-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 20px;
    font-weight: 700;
    color: #d1d5db;
    transition: all 0.3s;
    cursor: pointer;
}

.brand-logo:hover {
    color: #667eea;
    transform: scale(1.1);
}

/* ============================================
   Features Section Pro
   ============================================ */

.features-section-pro {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.section-header-pro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-badge-pro {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title-pro {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.highlight-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-desc-pro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.features-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card-pro {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card-pro:hover::before {
    opacity: 0.03;
}

.feature-icon-pro {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.icon-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.4s;
}

.feature-card-pro:hover .icon-inner {
    transform: scale(1.1) rotate(5deg);
}

.icon-glow {
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-lg);
    background: inherit;
    filter: blur(20px);
    opacity: 0.4;
    z-index: 0;
}

.feature-icon-pro.purple .icon-inner {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-icon-pro.blue .icon-inner {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.feature-icon-pro.green .icon-inner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-icon-pro.orange .icon-inner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-icon-pro.red .icon-inner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.feature-icon-pro.pink .icon-inner {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.feature-card-pro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card-pro > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-list-pro {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list-pro li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list-pro i {
    color: #667eea;
    font-size: 16px;
    flex-shrink: 0;
}

/* ============================================
   Workflow Section
   ============================================ */

.workflow-section-pro {
    padding: 120px 0;
    background: white;
    position: relative;
}

.workflow-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.workflow-grid-pro::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    z-index: 0;
}

.workflow-step {
    position: relative;
    z-index: 1;
}

.step-number-pro {
    font-size: 4rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    margin-bottom: -40px;
    text-align: center;
}

.step-content-pro {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s;
}

.workflow-step:hover .step-content-pro {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-icon-pro {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

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

.step-content-pro p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   Pricing Section Pro
   ============================================ */

.pricing-section-pro {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.pricing-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-pro {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-pro.featured {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(180deg, white 0%, #f9fafb 100%);
}

.pricing-card-pro:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.pricing-card-pro.featured:hover {
    transform: scale(1.07) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.pricing-header-pro {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header-pro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price-wrapper .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-wrapper .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-wrapper .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-features-pro {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features-pro li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-features-pro i {
    color: #667eea;
    font-size: 18px;
    flex-shrink: 0;
}

.btn-outline-pro {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline-pro:hover {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

/* ============================================
   CTA Section Pro
   ============================================ */

.cta-section-pro {
    position: relative;
    padding: 120px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float-orb 15s ease-in-out infinite;
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.cta-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #764ba2 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
    animation-delay: 7s;
}

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

.cta-content-pro h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-content-pro > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons-pro {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-white-pro {
    background: white;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-white-pro:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-white-pro {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white-pro:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.cta-feature i {
    color: #4ade80;
    font-size: 18px;
}

/* ============================================
   Animations
   ============================================ */

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

@keyframes pulse-ring {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-slide-left {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-message {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-section-pro {
        padding: 120px 0 80px;
    }
    
    .hero-content-pro {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title-pro {
        font-size: 3rem;
    }
    
    .hero-subtitle-pro {
        font-size: 1.125rem;
    }
    
    .dashboard-mockup {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .floating-elements {
        display: none;
    }
    
    .workflow-grid-pro {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .workflow-grid-pro::before {
        display: none;
    }
    
    .pricing-grid-pro {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-pro.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero-section-pro {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title-pro {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle-pro {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .hero-cta-pro {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-pro {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-stats-pro {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item-pro {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .stat-item-pro strong {
        font-size: 1.25rem;
    }
    
    .stat-item-pro span {
        font-size: 0.8125rem;
    }
    
    /* Brands Section */
    .brands-section-pro {
        padding: 40px 0;
    }
    
    .brands-slider {
        gap: 24px;
    }
    
    .brand-logo {
        font-size: 16px;
    }
    
    /* Features Section */
    .features-section-pro {
        padding: 80px 0;
    }
    
    .section-header-pro {
        margin-bottom: 48px;
    }
    
    .section-title-pro {
        font-size: 2rem;
    }
    
    .section-desc-pro {
        font-size: 1rem;
    }
    
    .features-grid-pro {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card-pro {
        padding: 32px 24px;
    }
    
    .feature-icon-pro {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .icon-inner {
        font-size: 28px;
    }
    
    .feature-card-pro h3 {
        font-size: 1.25rem;
    }
    
    .feature-card-pro > p {
        font-size: 0.9375rem;
    }
    
    /* Workflow Section */
    .workflow-section-pro {
        padding: 80px 0;
    }
    
    .step-number-pro {
        font-size: 3rem;
        margin-bottom: -30px;
    }
    
    .step-content-pro {
        padding: 24px;
    }
    
    .step-icon-pro {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .step-content-pro h3 {
        font-size: 1.125rem;
    }
    
    .step-content-pro p {
        font-size: 0.875rem;
    }
    
    /* Pricing Section */
    .pricing-section-pro {
        padding: 80px 0;
    }
    
    .pricing-card-pro {
        padding: 32px 24px;
    }
    
    .pricing-header-pro h3 {
        font-size: 1.25rem;
    }
    
    .price-wrapper .amount {
        font-size: 2.75rem;
    }
    
    .price-wrapper .currency {
        font-size: 1.25rem;
    }
    
    .pricing-features-pro {
        gap: 12px;
    }
    
    .pricing-features-pro li {
        font-size: 0.875rem;
    }
    
    /* CTA Section */
    .cta-section-pro {
        padding: 80px 0;
    }
    
    .cta-content-pro h2 {
        font-size: 2rem;
    }
    
    .cta-content-pro > p {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .cta-buttons-pro {
        flex-direction: column;
    }
    
    .cta-features {
        gap: 16px;
        flex-direction: column;
    }
    
    /* Dashboard Mockup Mobile */
    .chat-interface {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .chat-sidebar {
        display: none;
    }
    
    .chat-main {
        min-height: 300px;
    }
    
    .mockup-header-pro {
        padding: 12px 16px;
    }
    
    .header-tabs {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .hero-section-pro {
        padding: 80px 0 50px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 24px;
    }
    
    .hero-title-pro {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .hero-subtitle-pro {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }
    
    .btn-pro {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section-badge-pro {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .section-title-pro {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .section-desc-pro {
        font-size: 0.9375rem;
    }
    
    .features-section-pro,
    .workflow-section-pro,
    .pricing-section-pro {
        padding: 60px 0;
    }
    
    .feature-card-pro {
        padding: 24px 20px;
    }
    
    .feature-icon-pro {
        width: 56px;
        height: 56px;
    }
    
    .icon-inner {
        font-size: 24px;
    }
    
    .feature-card-pro h3 {
        font-size: 1.125rem;
        margin-bottom: 10px;
    }
    
    .feature-card-pro > p {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }
    
    .feature-list-pro {
        gap: 10px;
    }
    
    .feature-list-pro li {
        font-size: 0.8125rem;
    }
    
    .step-number-pro {
        font-size: 2.5rem;
        margin-bottom: -25px;
    }
    
    .step-content-pro {
        padding: 20px;
    }
    
    .step-icon-pro {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .step-content-pro h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .step-content-pro p {
        font-size: 0.8125rem;
    }
    
    .pricing-card-pro {
        padding: 24px 20px;
    }
    
    .pricing-header-pro {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    
    .pricing-header-pro h3 {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .price-wrapper .amount {
        font-size: 2.25rem;
    }
    
    .price-wrapper .currency {
        font-size: 1.125rem;
    }
    
    .plan-desc {
        font-size: 0.875rem;
    }
    
    .pricing-features-pro {
        margin-bottom: 24px;
        gap: 10px;
    }
    
    .pricing-features-pro li {
        font-size: 0.8125rem;
        gap: 10px;
    }
    
    .pricing-features-pro i {
        font-size: 16px;
    }
    
    .cta-section-pro {
        padding: 60px 0;
    }
    
    .cta-content-pro h2 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .cta-content-pro > p {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons-pro {
        margin-bottom: 32px;
        gap: 12px;
    }
    
    .cta-feature {
        font-size: 0.875rem;
        gap: 6px;
    }
    
    .cta-feature i {
        font-size: 16px;
    }
    
    .mockup-content-pro {
        padding: 16px;
        min-height: 300px;
    }
    
    .chat-main {
        padding: 12px;
        gap: 12px;
        min-height: 250px;
    }
    
    .msg-bubble {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .ai-indicator {
        padding: 3px 8px;
        font-size: 10px;
        margin-bottom: 6px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove default margins */
.home-page-pro {
    margin: 0;
    padding: 0;
}

/* Improve text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility */
.btn-pro:focus-visible,
.tab:focus-visible,
.chat-item:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-bg-effects,
    .floating-elements,
    .cta-bg-effects {
        display: none;
    }
}