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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fefefe;
}

/* CSS Variables for Colors (matching Tailwind theme) */
:root {
    --background: 210 40% 98%;
    --foreground: 222.2 84% 4.9%;
    --primary: 215 90% 53%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --border: 214.3 31.8% 91.4%;
    --resourced-50: #f0f7ff;
    --resourced-100: #e0effe;
    --resourced-200: #bae0fd;
    --resourced-300: #7cc5fb;
    --resourced-400: #3aa7f6;
    --resourced-500: #1e78f0;
    --resourced-600: #0b5ed7;
    --resourced-700: #0e4bb1;
    --resourced-800: #123c85;
    --resourced-900: #15366d;
    --resourced-950: #0f1d3c;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(var(--border));
}

.header-content {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--resourced-600);
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--resourced-500);
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #374151;
}

.close-icon {
    display: none;
}

.mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid hsl(var(--border));
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.mobile-nav-link:hover {
    color: var(--resourced-500);
}

/* Main Content */
.main-content {
    flex: 1;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, white, #dbeafe);
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    padding-top: 4rem;
    position: relative;
    z-index: 3;
    animation: fadeIn 0.6s ease-out;
}

@media (min-width: 640px) {
    .hero-content {
        padding-top: 6rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Digital Worker Widget */
.digital-worker-widget {
    padding: 3rem 0;
    background-color: white;
    border-bottom: 1px solid hsl(var(--border));
}

.widget-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .widget-title {
        font-size: 1.875rem;
    }
}

.widget-demo {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-interface {
    width: 100%;
    max-width: 32rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid #bfdbfe;
    margin-right: 0.75rem;
    background-color: #e0e7ff;
    animation: bounce 2.5s infinite;
}

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

.worker-name {
    font-weight: 600;
    color: #1e40af;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    min-height: 60px;
}

.message {
    display: flex;
}

.worker-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-bubble {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.worker-message .message-bubble {
    background-color: #dbeafe;
    color: #1e3a8a;
}

.user-message .message-bubble {
    background-color: #e5e7eb;
    color: #1f2937;
}

.chat-input {
    display: flex;
    gap: 0.5rem;
}

.input-field {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.send-btn {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.send-btn:hover {
    background-color: #1d4ed8;
}

.widget-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.news-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

.news-card:hover .card-image {
    transform: scale(1.05);
}

.news-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.news-card:hover .news-title {
    color: var(--resourced-600);
}

.news-summary {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.4;
    flex: 1;
}

/* Universal Platform Section */
.universal-platform {
    padding: 5rem 0;
    background-color: white;
    border-bottom: 1px solid hsl(var(--border));
}

.universal-platform .section-title {
    text-align: center;
}

.platform-intro {
    font-size: 1.25rem;
    color: #4b5563;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 3rem;
}

.platform-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.feature-description {
    color: #4b5563;
    text-align: center;
}

/* Departments Section */
.departments-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.departments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .departments-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.department-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.department-icon {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.department-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.department-description {
    color: #4b5563;
    text-align: center;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--resourced-600);
    color: white;
    padding: 4rem 0;
}

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

@media (min-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: var(--resourced-100);
    margin-bottom: 2rem;
}

.cta-visual {
    display: none;
}

@media (min-width: 1024px) {
    .cta-visual {
        display: block;
    }
}

.cta-decoration {
    position: relative;
}

.decoration-box {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--resourced-400);
    border-radius: 0.5rem;
}

.decoration-box.top-left {
    left: -1.5rem;
    top: -1.5rem;
}

.decoration-box.bottom-right {
    right: -1.5rem;
    bottom: -1.5rem;
}

.coming-soon-box {
    background-color: var(--resourced-500);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 200px;
}

.coming-soon-text {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, white, var(--resourced-100));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-line {
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, white, var(--resourced-100));
    border-radius: 9999px;
}

/* Footer */
.footer {
    background-color: #f9fafb;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--resourced-600);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    font-size: 1rem;
    color: var(--resourced-500);
    margin-right: 0.5rem;
}

.contact-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--resourced-500);
}

.contact-text {
    color: #4b5563;
}

.footer-heading {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #111827;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    text-align: left;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--resourced-500);
}

.footer-separator {
    height: 1px;
    background-color: #e5e7eb;
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-col: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        gap: 0;
    }
}

.copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #6b7280;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--resourced-500);
}

.social-icon {
    height: 1.5rem;
    width: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 32rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #111827;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.shadow-blue {
    box-shadow: 0 8px 30px rgba(30, 120, 240, 0.15);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--resourced-600);
    color: white;
}

.btn-primary:hover {
    background-color: var(--resourced-700);
}

.btn-outline {
    background-color: transparent;
    color: var(--resourced-600);
    border-color: var(--resourced-600);
}

.btn-outline:hover {
    background-color: var(--resourced-600);
    color: white;
}

/* Responsive Text Sizes */
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

/* Font Weights */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Colors */
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }

/* Spacing */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Grid */
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Borders */
.border { border: 1px solid #e5e7eb; }
.border-b { border-bottom: 1px solid #e5e7eb; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* Backgrounds */
.bg-white { background-color: white; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Width and Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Z-index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Shadow */
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); }

/* Transitions */
.transition { transition: all 0.15s ease-in-out; }
.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
.transition-shadow { transition: box-shadow 0.15s ease-in-out; }
.transition-transform { transition: transform 0.15s ease-in-out; }

/* Transform */
.scale-105:hover { transform: scale(1.05); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Line Clamp */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Company Page Styles */
.about-section {
    padding: 4rem 0;
    background-color: white;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-description {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vision-card {
    background: linear-gradient(to bottom right, var(--resourced-50), var(--resourced-100));
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.vision-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.vision-description {
    color: #4b5563;
}

.careers-teaser {
    padding: 4rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.teaser-content {
    max-width: 32rem;
    margin: 0 auto;
}

.teaser-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.teaser-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}

.company-news {
    padding: 4rem 0;
    background-color: white;
}

.company-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .company-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.news-item {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}

.news-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.news-headline {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.news-excerpt {
    color: #4b5563;
}

.modal-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.modal-text p {
    margin-bottom: 1rem;
}

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

/* Careers Page Styles */
.careers-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, white, #dbeafe);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-listings {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.listings-content {
    max-width: 64rem;
    margin: 0 auto;
}

.jobs-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.no-jobs-message {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.no-jobs-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
}

.no-jobs-text {
    color: #6b7280;
    margin-bottom: 1rem;
}

.no-jobs-text:last-of-type {
    margin-bottom: 2rem;
}

.btn-icon {
    margin-right: 0.5rem;
}

.job-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.job-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #4b5563;
    flex-wrap: wrap;
}

.job-summary {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

/* Digital Workers Page Styles */
.digital-workers-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, white, #dbeafe);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filters-section {
    padding: 2rem 0;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
}

.filters-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .filters-content {
        flex-direction: row;
        align-items: end;
        gap: 2rem;
    }
}

.filter-group {
    flex: 1;
}

.filter-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.filter-select,
.filter-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.workers-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.workers-table-container {
    overflow-x: auto;
}

.workers-table {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.worker-row {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(30, 120, 240, 0.15);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: background-color 0.2s;
}

.worker-row:nth-child(even) {
    background-color: var(--resourced-50);
}

.worker-row:hover {
    background-color: var(--resourced-100);
}

.worker-profile {
    display: grid;
    grid-template-columns: 340px 1fr auto;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    min-width: 800px;
}

@media (max-width: 1024px) {
    .worker-profile {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-width: auto;
    }
}

.worker-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.worker-role {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    white-space: pre-line;
}

.worker-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.worker-id {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.25rem;
}

.worker-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    flex: 1;
}

.worker-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.worker-industry,
.worker-system {
    font-size: 1rem;
    color: #374151;
}

.worker-description {
    font-size: 0.875rem;
    color: #374151;
    white-space: pre-line;
    text-transform: capitalize;
    line-height: 1.4;
}

.worker-description:first-letter {
    text-transform: uppercase;
}

.worker-rating {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 1rem 1.5rem;
    min-width: 120px;
}

.rating-stars {
    display: flex;
}

.star {
    font-size: 1.25rem;
    color: #d1d5db;
}

.star.filled {
    color: #fbbf24;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

/* Worker Modal Styles */
.worker-modal-header {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.modal-worker-info p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.modal-section ul {
    list-style: disc;
    list-style-position: inside;
    color: #374151;
    margin-left: 0;
}

.modal-section li {
    margin-bottom: 0.25rem;
}

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

.rating-text {
    color: #4b5563;
}
