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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-lighter);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-1px);
    color: var(--primary-dark);
}

.nav-logo i {
    font-size: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-top: 24px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.primary-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.secondary-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
    animation: float 6s ease-in-out infinite;
    z-index: 20;
}

.floating-card i {
    color: var(--primary);
    font-size: 20px;
}

.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: 40px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: 60px;
    animation-delay: 4s;
}

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

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dashboard-preview {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    width: 300px;
    border: 1px solid var(--gray-lighter);
    z-index: 10;
    position: relative;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-lighter);
}

.dashboard-title {
    font-weight: 600;
    color: var(--dark);
}

.dashboard-score {
    background: var(--success);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-item {
    margin-bottom: 16px;
}

.job-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.job-company {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.job-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    padding: 8px 12px;
    border: 1px solid var(--gray-lighter);
    background: transparent;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Pain Points Section */
.pain-points {
    padding: 60px 0;
    background: var(--white);
}

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

.pain-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-lighter);
    text-align: center;
    transition: all 0.3s ease;
}

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

.pain-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pain-icon i {
    font-size: 32px;
    color: var(--white);
}

.pain-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.pain-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-lighter);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 280px;
}

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

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

.step-arrow {
    font-size: 24px;
    color: var(--primary);
    font-weight: 600;
}

/* Video Demo Section */
.video-demo {
    padding: 60px 0;
    background: var(--white);
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--dark);
}

.video-wrapper video {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    border-radius: 16px;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.video-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-lighter);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.video-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.video-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-feature .feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.video-feature .feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.video-feature .feature-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Market Section */
.market {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 64px;
}

.market-stat {
    text-align: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.market-stat h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.market-stat p {
    color: var(--gray);
    line-height: 1.6;
}

.market-competitors h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 32px;
}

.competitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.competitor-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-lighter);
}

.competitor-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.competitor-item ul {
    list-style: none;
}

.competitor-item li {
    color: var(--gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.competitor-item li::before {
    content: "✗";
    color: var(--error);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Tech Stack Section */
.tech-stack {
    padding: 60px 0;
    background: var(--white);
}

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

.tech-category {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-lighter);
}

.tech-category h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tech-item {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Demo Section */
.demo {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.demo-container {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
}

.demo-sidebar {
    background: var(--white);
    padding: 24px;
    border-right: 1px solid var(--gray-lighter);
}

.demo-sidebar h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.demo-main {
    padding: 24px;
}

/* Job List Styles */
.job-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

.job-list::-webkit-scrollbar {
    width: 6px;
}

.job-list::-webkit-scrollbar-track {
    background: var(--gray-lighter);
    border-radius: 8px;
}

.job-list::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 8px;
}

.job-list::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

/* Job Card Styles */
.job-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-lighter);
    box-shadow: var(--shadow-sm);
}

.job-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.job-card.selected {
    border-color: var(--primary);
    background: var(--gray-lighter);
    box-shadow: var(--shadow-md);
}

.job-card h3 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.job-card h3 i {
    color: var(--primary);
    font-size: 14px;
}

.job-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.job-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
}

.job-info-item i {
    width: 14px;
    color: var(--gray);
    font-size: 12px;
}

.match-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-score span:first-child {
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}

.match-score .score-badge {
    background: var(--success);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.match-score .score-badge.low {
    background: var(--error);
}

.match-score .score-badge.medium {
    background: var(--warning);
}

/* Job Details Styles */
.job-details-content {
    display: none;
}

.job-details-content.active {
    display: block;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-lighter);
}

.job-header-left h2 {
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.job-header-left .company-location {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--gray);
    font-size: 14px;
}

.job-header-left .company-location span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-header-left .company-location i {
    color: var(--gray);
    font-size: 12px;
}

.job-header .score-badge {
    background: var(--success);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.job-header .score-badge.low {
    background: var(--error);
}

.job-header .score-badge.medium {
    background: var(--warning);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--gray-lighter);
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary);
    background: var(--gray-lighter);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--gray-lighter);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tab-btn i {
    font-size: 14px;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.2s ease;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 16px;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.tab-content h3 i {
    color: var(--primary);
    font-size: 16px;
}

.tab-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
    font-size: 14px;
}

.tab-content .email {
    background: var(--gray-lighter);
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    color: var(--dark);
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Custom Scrollbar for Tab Content */
.tab-content::-webkit-scrollbar {
    width: 8px;
}

.tab-content::-webkit-scrollbar-track {
    background: var(--gray-lighter);
    border-radius: 4px;
}

.tab-content::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 4px;
}

.tab-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Formatted Text Styling */
.formatted-text {
    line-height: 1.7;
}

.formatted-text p {
    margin-bottom: 16px;
    padding: 0;
    text-align: left;
    font-size: 14px;
    color: var(--gray);
}

.formatted-text p:last-child {
    margin-bottom: 0;
}

.formatted-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 24px 0 16px 0;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
}

.formatted-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 12px 0;
}

.formatted-text h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin: 18px 0 10px 0;
}

.formatted-text strong {
    font-weight: 600;
    color: var(--dark);
}

.formatted-text em {
    font-style: italic;
    color: var(--gray-dark);
}

.formatted-text hr {
    border: none;
    height: 1px;
    background: var(--gray-lighter);
    margin: 20px 0;
}

.formatted-text ul {
    margin: 16px 0;
    padding-left: 20px;
}

.formatted-text li {
    margin-bottom: 8px;
    color: var(--gray);
    line-height: 1.6;
}









.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--gray-lighter);
    background: var(--gray-lighter);
}

.modal-header h3 {
    margin: 0;
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--gray-lighter);
    color: var(--dark);
}

.modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.job-info {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-lighter);
}

.job-info h4 {
    margin: 0 0 12px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
}

.job-info p {
    margin: 0 0 8px 0;
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cover-letter-content {
    line-height: 1.6;
}

.cover-letter-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 12px 0;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 6px;
}

.cover-letter-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin: 18px 0 10px 0;
}

.cover-letter-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin: 16px 0 8px 0;
}

.cover-letter-content p {
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 14px;
}

.cover-letter-content strong {
    font-weight: 600;
    color: var(--dark);
}

.cover-letter-content em {
    font-style: italic;
    color: var(--gray-dark);
}

.cover-letter-content hr {
    border: none;
    height: 1px;
    background: var(--gray-lighter);
    margin: 16px 0;
}

.cover-letter-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.cover-letter-content li {
    margin-bottom: 6px;
    color: var(--gray);
    line-height: 1.5;
}

/* No Selection State */
.no-selection {
    text-align: center;
    color: var(--gray-light);
    padding: 80px 20px;
}

.no-selection i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--gray-lighter);
}

.no-selection p {
    font-size: 16px;
    color: var(--gray);
}

/* Error and Loading States */
.error-message {
    text-align: center;
    color: var(--error);
    padding: 60px 20px;
}

.error-message i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--error);
}

.error-message p {
    font-size: 16px;
    color: var(--error);
}

.no-jobs {
    text-align: center;
    color: var(--gray-light);
    padding: 60px 20px;
    font-size: 16px;
}

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

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.primary-btn.large {
    padding: 20px 40px;
    font-size: 18px;
}

.secondary-btn.large {
    padding: 18px 38px;
    font-size: 18px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-btn.large:hover {
    background: var(--white);
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 28px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-lighter);
    color: var(--gray-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .video-wrapper video {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .pain-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
} 