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

/* Language Toggle Styles */
.language-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px 0;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: #2e7d32;
    background: #f8f9fa;
}

.lang-btn.active {
    background: #2e7d32;
    color: white;
    border-color: #2e7d32;
}

/* Checkbox and Radio Styles */
.checkbox-group, .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label, .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover, .radio-label:hover {
    border-color: #2e7d32;
    background: #f8f9fa;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #2e7d32;
}

.checkbox-label input:checked + span,
.radio-label input:checked + span {
    font-weight: 600;
    color: #2e7d32;
}

/* FOMO Section Styles */
.fomo-section {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.fomo-text {
    color: white;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Clean Job Card Styles */
.clean-job-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.clean-job-card {
    background: white;
    border: 2px solid #2e7d32;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
}

.clean-job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.2);
    border-color: #1b5e20;
}

.job-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-card-field {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.job-card-field strong {
    color: #1b5e20;
    font-weight: 600;
}

.job-card-field.fomo-field {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 12px 0;
}

.job-card-field.fomo-field strong {
    color: white;
    font-weight: 700;
}

.job-card-apply-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 100%;
}

.job-card-apply-btn:hover {
    background: #1b5e20;
    transform: translateY(-1px);
}

/* Apply Section Styles */
.apply-section {
    margin: 24px 0;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #2e7d32;
}

.apply-hint {
    margin: 8px 0 0 0;
    font-size: 14px;
    color: #2e7d32;
    font-weight: 600;
}

/* Header Logo Styles */
.lfw-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
    padding: 8px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.lfw-text {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
    letter-spacing: 0.5px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .container {
        margin: 40px auto;
        border-radius: 16px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        min-height: auto;
    }
}

/* Loading State - Instagram Style */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(46, 125, 50, 0.1);
    border-top: 3px solid #2e7d32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.skeleton-line {
    height: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.skeleton-line.title { height: 16px; width: 70%; }
.skeleton-line.subtitle { height: 12px; width: 50%; }
.skeleton-line.tags { height: 10px; width: 40%; }

/* Header - Instagram Style */
.header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    animation: slideInDown 0.4s ease-out;
}

.header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.subtitle {
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Job Info Box - Instagram Style */
.job-info-box {
    background: linear-gradient(135deg, #f8fffe, #f0fdf4);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 32px;
    border: 1px solid rgba(46, 125, 50, 0.1);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.08);
    animation: slideInLeft 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

.job-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
}

.job-info-box h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.job-info-box p {
    color: #4b5563;
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 500;
}

.pay-rate {
    color: #2e7d32 !important;
    font-weight: 800 !important;
    font-size: 20px !important;
    background: rgba(46, 125, 50, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 8px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Form Styles - Instagram Level */
.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-row .form-field {
    flex: 1;
}

.form-field {
    margin-bottom: 20px;
    position: relative;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
    font-weight: 500;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
    background: white;
    transform: translateY(-1px);
}

.form-field input:valid,
.form-field textarea:valid {
    border-color: rgba(46, 125, 50, 0.3);
}

/* Floating Label Effect */
.form-field.floating {
    position: relative;
}

.form-field.floating input:focus + label,
.form-field.floating input:not(:placeholder-shown) + label {
    transform: translateY(-24px) scale(0.8);
    color: #2e7d32;
}

.form-field.floating label {
    position: absolute;
    top: 16px;
    left: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: white;
    padding: 0 4px;
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.character-counter {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* Info Box */
.info-box {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.info-icon {
    width: 20px;
    height: 20px;
    color: #1976d2;
}

.info-header span {
    font-weight: 600;
    color: #1976d2;
    font-size: 14px;
}

.info-box p {
    color: #1565c0;
    font-size: 14px;
    line-height: 1.5;
}

/* Submit Button - Instagram Style */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
    letter-spacing: 0.01em;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.submit-btn:hover:not(:disabled)::before {
    left: 100%;
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
    transition: all 0.1s;
}

.submit-btn:disabled {
    background: #e0e0e0;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Success Animation */
.submit-success {
    background: #4caf50 !important;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.disclaimer {
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Success State */
.success-container {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    color: #4caf50;
    stroke-width: 3;
}

.success-container h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 16px;
}

.success-container > p {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px;
}

.app-cta {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.app-cta h3 {
    color: #2e7d32;
    font-size: 16px;
    margin-bottom: 8px;
}

.app-cta p {
    color: #388e3c;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

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

.app-button {
    background: #2e7d32;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.app-button:hover {
    background: #1b5e20;
}

.later-button {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.later-button:hover {
    background: #eeeeee;
}

.email-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Error State */
.error-container {
    text-align: center;
    padding: 40px 20px;
}

.error-container h2 {
    color: #d32f2f;
    margin-bottom: 16px;
}

.error-container p {
    color: #666;
    margin-bottom: 24px;
}

.retry-button {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.retry-button:hover {
    background: #1b5e20;
}

/* Job Description Enhancement */
.job-description-full {
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid #eee;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    line-height: 1.6;
}

.job-description-section {
    max-width: 100%;
    overflow: hidden;
}

.job-description-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    line-height: 1.6;
}

.description-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.job-description {
    color: #666;
    line-height: 1.5;
    white-space: pre-wrap;
}

/* No Jobs Message - Instagram Style */
.no-jobs-container {
    text-align: center;
    padding: 80px 20px;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeInScale 0.6s ease-out;
}

.no-jobs-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.no-jobs-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.no-jobs-subtitle {
    color: #6b7280;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.no-jobs-cta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.cta-text {
    color: #666;
    margin-bottom: 16px;
    font-size: 14px;
}

.cta-button {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #1b5e20;
    color: white;
    text-decoration: none;
}

.app-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.lfw-logo {
    font-size: 18px;
    font-weight: bold;
    color: #2e7d32;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #2e7d32;
}

.download-button {
    background: #ccc;
    color: #666;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: not-allowed;
}

/* LFW App Branding (TestFlight style) */
.lfw-app-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.lfw-app-logo {
    width: 60px;
    height: 60px;
    background: #2E7D32;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
}

.lfw-app-logo::before {
    content: "LFW";
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: -2px;
}

.lfw-app-logo::after {
    content: ".app";
    color: #1a5f1e;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.coming-soon-btn {
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    color: #6b7280;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Mobile App Style Job Cards */
.jobs-section {
    margin: 24px 0;
    animation: slideInUp 0.4s ease-out;
}

.jobs-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.job-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card-clean {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.4s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.job-card-clean:nth-child(1) { animation-delay: 0.1s; }
.job-card-clean:nth-child(2) { animation-delay: 0.2s; }
.job-card-clean:nth-child(3) { animation-delay: 0.3s; }
.job-card-clean:nth-child(4) { animation-delay: 0.4s; }

.job-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.03), transparent);
    transition: left 0.5s;
}

.job-card-clean:hover {
    border-color: rgba(46, 125, 50, 0.2);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.12);
    transform: translateY(-4px) scale(1.01);
}

.job-card-clean:hover::before {
    left: 100%;
}

.job-card-clean:active {
    transform: translateY(-2px) scale(0.99);
    transition: all 0.1s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile App Exact Style Job Cards */
.job-card-mobile {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    animation: slideInUp 0.4s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 12px;
}

.job-card-mobile:nth-child(1) { animation-delay: 0.1s; }
.job-card-mobile:nth-child(2) { animation-delay: 0.2s; }
.job-card-mobile:nth-child(3) { animation-delay: 0.3s; }
.job-card-mobile:nth-child(4) { animation-delay: 0.4s; }

.job-card-mobile:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.job-card-main {
    display: flex;
    gap: 16px;
}

.job-card-content {
    flex: 1;
}

.job-title-mobile {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.company-name-mobile {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 8px 0;
}

.location-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.location-icon {
    font-size: 12px;
}

.location-text {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.job-description-preview {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-meta-row {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.schedule-info,
.language-info,
.rating-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.schedule-icon,
.language-icon,
.star-icon {
    font-size: 12px;
}

.schedule-text,
.language-text,
.rating-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.posted-date {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.job-card-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 8px;
}

.pay-rate-mobile {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
    line-height: 1;
}

.pay-frequency {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.apply-now-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

.apply-now-btn:hover {
    background: #1b5e20;
    transform: scale(1.05);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.job-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.job-card-pay {
    color: #2e7d32;
    font-weight: 700;
    font-size: 16px;
    background: rgba(46, 125, 50, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.job-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.job-tag-small {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: #475569;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.04);
    letter-spacing: 0.01em;
}

.job-card-footer {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.tap-to-expand {
    color: #2e7d32;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tap-to-expand::after {
    content: '→';
    transition: transform 0.2s;
}

.job-card-clean:hover .tap-to-expand::after {
    transform: translateX(4px);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Job Picker Styles - Vercel Recreation */
.job-picker {
    background: #f5f5f5;
    min-height: 100vh;
}

/* Header Section (like Vercel) */
.location-header-section {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
}

.location-info {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
}

.company-name {
    font-size: 32px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 8px;
}

.location-address {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

/* Job Listings Section */
.job-listings-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 32px 16px;
}

.section-header {
    margin-bottom: 24px;
}

.positions-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.apply-subtitle {
    color: #6b7280;
}

.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Job Cards (like Vercel) */
.job-card-vercel {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.job-card-vercel:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

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

.job-title-section {
    flex: 1;
}

.job-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.job-pay {
    color: #2e7d32;
    font-weight: 500;
    margin-top: 4px;
}

.job-posted {
    font-size: 14px;
    color: #6b7280;
}

.job-description {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Job Tags */
.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.job-tag {
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
}

.job-tag.primary {
    background-color: #dcfce7;
    color: #2e7d32;
}

.job-tag.gray {
    background-color: #f3f4f6;
    color: #374151;
}

/* Job Footer */
.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.applicant-count {
    font-size: 14px;
    color: #6b7280;
}

.apply-btn-card {
    background: #2e7d32;
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.apply-btn-card:hover {
    background: #1b5e20;
}

/* Footer CTA */
.footer-cta {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 32px 16px;
    margin-top: 48px;
}

.footer-cta h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-cta p {
    margin-bottom: 16px;
}

.download-btn {
    display: inline-block;
    background: white;
    color: #2e7d32;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.download-btn:hover {
    background: #f3f4f6;
}

/* LFW Branding Footer */
.lfw-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.lfw-brand-section {
    text-align: center;
    padding: 20px;
    background: #f8fffe;
    border-radius: 12px;
    border: 1px solid #d1fae5;
}

.lfw-logo-main {
    font-size: 20px;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 4px;
}

.lfw-tagline {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 12px;
}

.lfw-download-btn {
    background: #d1d5db;
    color: #6b7280;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: not-allowed;
}

/* Job Description Section */
.job-details-section {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.job-description-text {
    color: #4b5563;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Mobile Responsive - Instagram Level */
@media (max-width: 480px) {
    .container {\n        padding: 20px 16px;\n    }\n    \n    .header h1 {\n        font-size: 24px;\n    }\n    \n    .job-info-box {\n        padding: 20px;\n        margin-bottom: 24px;\n    }\n    \n    .job-info-box h2 {\n        font-size: 20px;\n    }\n    \n    .form-row {\n        flex-direction: column;\n        gap: 0;\n    }\n    \n    .form-field input,\n    .form-field textarea {\n        font-size: 16px; /* Prevents zoom on iOS */\n    }\n    \n    .submit-btn {\n        padding: 20px;\n        font-size: 18px;\n        border-radius: 20px;\n    }\n    \n    .job-card-clean {\n        padding: 16px;\n        border-radius: 12px;\n    }\n    \n    .job-card-title {\n        font-size: 16px;\n    }\n    \n    .job-card-pay {\n        font-size: 14px;\n        padding: 4px 10px;\n    }\n    \n    .cta-buttons {\n        flex-direction: column;\n        gap: 12px;\n    }\n    \n    .no-jobs-container {\n        padding: 60px 16px;\n    }\n    \n    .no-jobs-title {\n        font-size: 20px;\n    }\n    \n    .lfw-app-logo {\n        width: 50px;\n        height: 50px;\n    }\n    \n    .lfw-app-logo::before {\n        font-size: 14px;\n    }\n    \n    .lfw-app-logo::after {\n        font-size: 8px;\n    }\n}\n\n/* Enhanced Touch Targets for Mobile */\n@media (max-width: 768px) {\n    .job-card-clean {\n        min-height: 44px; /* Apple's recommended minimum */\n        padding: 20px;\n    }\n    \n    .submit-btn {\n        min-height: 48px;\n    }\n    \n    .form-field input,\n    .form-field textarea {\n        min-height: 44px;\n        padding: 16px;\n    }\n}\n\n/* Reduce Motion for Accessibility */\n@media (prefers-reduced-motion: reduce) {\n    * {\n        animation-duration: 0.01ms !important;\n        animation-iteration-count: 1 !important;\n        transition-duration: 0.01ms !important;\n    }\n}"}

/* V9 - Mobile App Exact Match */
.mobile-job-card {
    background: white;
    border: 2px solid #2e7d32 !important;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.mobile-job-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.job-content-area {
    flex: 1;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.company-name {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 8px 0;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.location-pin {
    font-size: 12px;
}

.address-text {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.job-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.job-metadata {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.schedule-badge,
.language-badge,
.rating-badge {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.post-date {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
    gap: 4px;
}

.pay-amount {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
    line-height: 1;
}

.pay-type {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Job Details Page */
.back-btn {
    background: none;
    border: none;
    color: #2e7d32;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 16px;
}

.job-details-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-details-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.job-details-company {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 12px 0;
}

.job-details-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #6b7280;
}

.job-details-pay {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
}

.job-description-section,
.job-info-section {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.apply-now-main {
    width: 100%;
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
}

.apply-now-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Available Positions Badge */
.available-positions-badge {
    background: #2e7d32;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
    font-weight: 600;
}

.position-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.position-text {
    font-size: 16px;
}

