/* AIApply-Inspired Clean Design - Purple Theme */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #ffffff;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-gradient-hover: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    --accent-color: #8b5cf6;
    --badge-bg: #ede9fe;
    --badge-color: #6d28d9;
    --badge-border: #c4b5fd;
}

/* Teal-Style Auth Buttons */
.btn-signup-teal {
    background: #f5a623 !important;
    color: #000 !important;
    padding: 12px 28px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
    border: none !important;
}

.btn-signup-teal:hover {
    background: #e09000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-login-teal {
    background: white !important;
    color: #111827 !important;
    padding: 12px 28px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    border: 2px solid #1a1a1a !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
}

.btn-login-teal:hover {
    background: #f5f5f5 !important;
    border-color: #000 !important;
}

/* Container */
.ai-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Hero Section */
.ai-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
    padding: 120px 0 80px;
    position: relative;
}

.ai-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-hero-text {
    max-width: 560px;
}

.ai-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--badge-bg);
    color: var(--badge-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid var(--badge-border);
}

.ai-hero-badge i {
    color: var(--accent-color);
}

.ai-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.ai-hero-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.ai-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35);
}

.ai-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.45);
    background: var(--primary-gradient-hover);
}

.ai-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #0f172a;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ai-btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.ai-trust-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 14px;
}

.ai-trust-line .stars {
    color: #fbbf24;
}

.ai-trust-line strong {
    color: #0f172a;
}

/* Hero Visual */
.ai-hero-visual {
    position: relative;
}

.ai-demo-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.ai-demo-header {
    background: #1e293b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-demo-dots {
    display: flex;
    gap: 6px;
}

.ai-demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ai-demo-dots span:nth-child(1) { background: #ef4444; }
.ai-demo-dots span:nth-child(2) { background: #fbbf24; }
.ai-demo-dots span:nth-child(3) { background: #22c55e; }

.ai-demo-content {
    padding: 24px;
}

.ai-job-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ai-job-item:hover {
    border-color: var(--primary-color);
    background: #f5f3ff;
}

.ai-job-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-job-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.ai-job-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
}

.ai-job-details span {
    font-size: 12px;
    color: #64748b;
}

.ai-job-status {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 100px;
    font-weight: 500;
}

.ai-job-status.applying {
    background: #dbeafe;
    color: #1d4ed8;
}

.ai-job-status.applied {
    background: #ede9fe;
    color: #6d28d9;
}

/* Company Logos Section */
.ai-logos-section {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.ai-logos-title {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ai-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.ai-logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.ai-logo-item:hover {
    color: #475569;
}

/* Features Section */
.ai-features-section {
    padding: 100px 0;
    background: white;
}

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

.ai-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.ai-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ai-section-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ai-feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.ai-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.ai-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.ai-feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ai-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.ai-feature-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* How It Works Section */
.ai-how-section {
    padding: 100px 0;
    background: #f8fafc;
}

.ai-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.ai-step-card {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.ai-step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.ai-step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.ai-step-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.ai-testimonials-section {
    padding: 100px 0;
    background: white;
}

.ai-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ai-testimonial-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.ai-testimonial-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ai-testimonial-stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 18px;
}

.ai-testimonial-text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ai-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.ai-author-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
}

.ai-author-info span {
    font-size: 13px;
    color: #64748b;
}

/* Pricing Section */
.ai-pricing-section {
    padding: 100px 0;
    background: #f8fafc;
}

.ai-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ai-pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.ai-pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.ai-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.ai-pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.ai-pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.ai-pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
}

.ai-pricing-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

.ai-pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.ai-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.ai-pricing-features li:last-child {
    border-bottom: none;
}

.ai-pricing-features li i {
    color: var(--primary-color);
    font-size: 14px;
}

.ai-pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-pricing-btn.primary {
    background: var(--primary-gradient);
    color: white;
}

.ai-pricing-btn.secondary {
    background: #f1f5f9;
    color: #334155;
}

.ai-pricing-btn:hover {
    transform: translateY(-2px);
}

/* CTA Section */
.ai-cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    text-align: center;
    color: white;
}

.ai-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.ai-cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ai-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ai-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
.ai-footer {
    padding: 60px 0 30px;
    background: #0f172a;
    color: white;
}

.ai-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.ai-footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-footer-brand h3 i {
    color: #e53935;
}

.ai-footer-brand p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.ai-footer-social a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.ai-footer-social a:hover {
    background: var(--primary-color);
    color: white;
}

.ai-footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: white;
}

.ai-footer-column ul {
    list-style: none;
}

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

.ai-footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.ai-footer-column ul li a:hover {
    color: var(--primary-light);
}

.ai-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ai-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ai-hero-text {
        max-width: 100%;
    }
    
    .ai-hero-cta {
        justify-content: center;
    }
    
    .ai-trust-line {
        justify-content: center;
    }
    
    .ai-features-grid,
    .ai-steps-grid,
    .ai-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-pricing-card.featured {
        transform: scale(1);
    }
    
    .ai-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .ai-features-grid,
    .ai-steps-grid,
    .ai-testimonials-grid,
    .ai-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-logos-grid {
        gap: 24px;
    }
    
    .ai-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .ai-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

