/* ============================================
   NEWO.AI INSPIRED REDESIGN - VOZAI WORKFORCE MESSAGING
   ============================================ */

/* Hero Section - Newo.AI Style */
.hero-redesign {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 5% 2rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Left Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(131, 58, 180, 0.1));
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FF1493;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -1px;
    margin: 0;
}

.hero-title-accent {
    color: #4169E1;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--secondary);
    max-width: 540px;
}

/* Lead Capture */
.hero-lead-capture {
    margin: 1rem 0;
}

.hero-input {
    width: 100%;
    max-width: 500px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card-bg);
    color: var(--text);
    transition: all 0.3s ease;
}

.hero-input:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.hero-input::placeholder {
    color: var(--secondary);
    opacity: 0.6;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

[data-theme="light"] .hero-cta-primary {
    background: #000000;
    color: #ffffff;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-cta-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-cta-subtext {
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 0;
}

/* Client Logos */
.client-logos {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.logos-label {
    font-size: 0.85rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logos-scroll {
    display: flex;
    gap: 2rem;
    align-items: center;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.logo-item {
    font-size: 0.9rem;
    color: var(--secondary);
    opacity: 0.6;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Right Visual - AI Employee Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-employee-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.employee-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.employee-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4169E1, #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.employee-avatar svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.employee-info {
    flex: 1;
}

.employee-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.employee-info p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #10b981;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* Employee Stats */
.employee-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(65, 105, 225, 0.05);
    border-radius: 12px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4169E1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--secondary);
    line-height: 1.3;
}

/* Employee Activity */
.employee-activity {
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

.activity-header svg {
    width: 20px;
    height: 20px;
}

.voice-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(180deg, #4169E1, #10b981);
    border-radius: 2px;
    animation: wave-pulse 0.8s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 80%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 100%; animation-delay: 0.15s; }
.wave-bar:nth-child(5) { height: 70%; animation-delay: 0.05s; }

@keyframes wave-pulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    padding: 6rem 5%;
    background: var(--background);
    border-top: 1px solid var(--border);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.25rem;
    text-align: center;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.problem-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.problem-stat:hover {
    transform: translateY(-4px);
    border-color: #FF1493;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #FF1493;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SHIFT SECTION
   ============================================ */

.shift-section {
    padding: 6rem 5%;
    background: var(--card-bg);
}

.shift-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.shift-text .section-title {
    text-align: left;
}

.shift-text .section-description {
    text-align: left;
    margin: 0 0 1.5rem 0;
}

.team-comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.team-column {
    flex: 1;
    text-align: center;
}

.team-column h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
}

.team-member svg {
    width: 32px;
    height: 32px;
    stroke: var(--secondary);
}

.team-member.ai svg {
    stroke: #4169E1;
}

.team-member span {
    font-size: 0.85rem;
    color: var(--secondary);
}

.team-cost {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.team-column.highlight {
    background: rgba(65, 105, 225, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
}

.team-column.highlight .team-cost {
    color: #10b981;
}

.team-arrow {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution-section {
    padding: 6rem 5%;
    background: var(--background);
}

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

.feature-card {
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #4169E1;
    box-shadow: 0 8px 24px rgba(65, 105, 225, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #4169E1;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.6;
}

.solution-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

[data-theme="light"] .cta-button-large {
    background: #000000;
    color: #ffffff;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-button-large svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results-section {
    padding: 6rem 5%;
    background: var(--card-bg);
}

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

.result-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: #10b981;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4169E1, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-quote {
    font-size: 0.9rem;
    color: var(--secondary);
    font-style: italic;
    line-height: 1.5;
}

/* ============================================
   INTEGRATION SECTION
   ============================================ */

.integration-section {
    padding: 6rem 5%;
    background: var(--background);
}

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

.integration-category {
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.integration-category h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.integration-logos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.integration-logo {
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    text-align: center;
    transition: all 0.3s ease;
}

.integration-logo:hover {
    border-color: #4169E1;
    transform: translateX(4px);
}

.integration-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
}

/* ============================================
   FAQ SECTION REDESIGN
   ============================================ */

.faq-section-redesign {
    padding: 6rem 5%;
    background: var(--card-bg);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-redesign {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-redesign:hover {
    border-color: #4169E1;
}

.faq-question-redesign {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-redesign:hover {
    color: #4169E1;
}

.faq-question-redesign svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    stroke: var(--secondary);
}

.faq-question-redesign.active svg {
    transform: rotate(180deg);
    stroke: #4169E1;
}

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

.faq-answer-redesign.open {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer-redesign p {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta-primary {
        align-self: center;
    }
    
    .shift-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .shift-text .section-title,
    .shift-text .section-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-redesign {
        padding: 2rem 5%;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .ai-employee-card {
        padding: 1.5rem;
    }
    
    .employee-stats {
        grid-template-columns: 1fr;
    }
    
    .team-comparison {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-arrow {
        transform: rotate(90deg);
    }
    
    .problem-stats,
    .solution-features,
    .results-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-input {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .faq-question-redesign {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }
}
