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

:root {
    /* Enterprise Color Palette - Sophisticated & Executive */
    --primary-navy: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary-gold: #d97706;
    --secondary-bronze: #92400e;
    --accent-silver: #64748b;
    --accent-platinum: #94a3b8;
    
    /* Backgrounds - Pure & Professional */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #2c3e50;
    --bg-darker: #1e40af;
    
    /* Text Colors - High Contrast & Professional */
    --text-primary: #1e3a8a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-white: #ffffff;
    --text-gold: #d97706;
    
    /* Borders & Shadows - Sophisticated */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-gold: #fbbf24;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-gold: 0 4px 6px -1px rgb(217 119 6 / 0.2), 0 2px 4px -2px rgb(217 119 6 / 0.1);
    
    /* Gradients - Executive Grade */
    --gradient-primary: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    --gradient-hero: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    --gradient-gold: linear-gradient(135deg, #d97706 0%, #92400e 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    font-weight: 400;
    letter-spacing: -0.025em;
}

.beta-banner {
    background-color: var(--primary-dark);
    color: var(--bg-primary);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1001; /* Higher than navbar */
}

.beta-banner p {
    margin: 0;
    color: #f1f5f9;
}

.beta-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* --- GHOST/OUTLINE BUTTON SYSTEM (As per user image reference) --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: 2px solid; /* Color defined in specific classes */
    background-color: transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    min-width: 220px;
    box-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--bg-white), 0 0 0 4px var(--secondary-gold);
}

/* Default state (for light backgrounds) */
.btn-primary {
    border-color: var(--secondary-gold);
    color: var(--secondary-gold);
}

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

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

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

.btn.large {
    padding: 20px 40px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.btn.full-width {
    display: block;
    width: 100%;
}

/* --- Contextual Overrides for Dark Backgrounds (like CTA sections) --- */
.cta-section .btn-primary {
    border-color: var(--secondary-gold);
    color: var(--secondary-gold);
    background-color: transparent;
}
.cta-section .btn-primary:hover {
    background-color: var(--secondary-gold);
    color: var(--text-white);
}

.cta-section .btn-secondary {
    border-color: var(--text-white);
    color: var(--text-white);
    background-color: transparent;
}
.cta-section .btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-navy);
}

/* Premium Enterprise Focus States - Overriding the general one for this style */
.btn:focus-visible {
    outline: none;
    box-shadow: 
        0 0 0 2px var(--bg-white),
        0 0 0 4px var(--secondary-gold);
}

/* Dashboard Quick Actions - Desktop Only */
.dashboard-quick-actions {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    z-index: 100;
}

.quick-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--border-medium);
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.025em;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.quick-action-btn:hover {
    background: var(--bg-light);
    border-color: var(--secondary-gold);
    color: var(--secondary-gold);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.quick-action-btn.logout {
    border-color: var(--secondary-gold);
    color: var(--secondary-gold);
}

.quick-action-btn.logout:hover {
    background: var(--secondary-gold);
    color: var(--text-white);
}

.quick-action-icon {
    font-size: 1rem;
}

/* Hide quick actions on mobile - use hamburger menu instead */
@media (max-width: 768px) {
    .dashboard-quick-actions {
        display: none;
    }
}

/* Mobile-only menu items */
.nav-link.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .nav-link.mobile-only {
        display: block;
    }
    
    /* Hide desktop logout button in nav on mobile */
    .nav-cta {
        display: none;
    }
}

/* Professional Loading State */
.btn-loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: button-spin 1s linear infinite;
}

@keyframes button-spin {
    to { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem; /* More space on sides */
    width: 100%;
    margin: 0 auto;
}

.nav-logo h2 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-gold);
}

.nav-cta {
    display: flex;
    gap: 1rem; /* Increased gap */
    align-items: center;
}

/* Make nav buttons smaller */
.nav-cta .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: auto;
    letter-spacing: 1.2px;
}

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

.hamburger span {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section - Sophisticated Design */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-secondary) 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0 5rem;
    position: relative;
}

.hero-container {
    max-width: 1400px;  /* Wider container for more sophisticated layout */
    margin: 0 auto;
    padding: 0 3rem;    /* More generous side padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--primary-navy);
    border: 2px solid var(--secondary-gold);
    padding: 1rem 2rem;  /* Larger badge */
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;   /* Slightly larger font */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;  /* More space below */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;     /* Much larger title */
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem; /* More space below title */
    letter-spacing: -0.02em;  /* Tighter letter spacing for sophistication */
}

.hero-description {
    font-size: 1.25rem;  /* Larger description text */
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem; /* Much more space before actions */
    margin-top: 1.5rem;  /* Extra line space under headline */
    max-width: 600px;    /* Limit width for better readability */
    margin-left: auto;   /* Center the text block */
    margin-right: auto;  /* Center the text block */
    font-weight: 400;
    text-align: center;  /* Center the description text */
}

.hero-actions {
    display: flex;
    gap: 2rem;          /* Larger gap between buttons */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;   /* Additional top margin */
}

.hero-visual {
    display: none;      /* Hide the hero visual for centered layout */
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-description-improved {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.hero-lead {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 280px;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
    font-size: 1.25rem;
    width: 32px;
    text-align: center;
}

.benefit-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

@media (max-width: 768px) {
    .hero-lead {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-item {
        min-width: 260px;
        padding: 0.6rem 1.25rem;
    }
    
    .benefit-text {
        font-size: 1rem;
    }
}

.highlight {
    color: var(--secondary-gold);
    font-weight: 700;
}

/* Sections */
section {
    padding: 4rem 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Value Proposition Cards --- */
.value-props {
    background-color: var(--bg-secondary);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: rgba(217, 119, 6, 0.4);
}

.value-icon {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-bronze);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
    flex-grow: 1; /* Ensure list grows if card needs to stretch */
}

.value-list li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.value-card .btn {
    margin-top: 1.5rem; /* Replaces margin-top: auto for consistency */
    align-self: flex-start;
}

/* --- How It Works Section --- */
.how-it-works {
    background-color: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step-card {
    background-color: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-bronze));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.step-icon {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-bronze);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

/* Trust Section */
.trust-section {
    background: var(--bg-light);
    color: var(--text-primary);
    text-align: center;
}

.trust-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.trust-content p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

.trust-label {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background-color: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* CTA Section */
.cta-section {
    background: var(--primary-navy);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-subtext {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-dark);
    color: var(--light-gray);
    padding: 5rem 0 2rem;
    border-top: 4px solid var(--secondary-gold);
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--accent-platinum);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    color: var(--accent-platinum);
    transition: all 0.3s ease;
}

.social-links a svg {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    min-width: 300px;
}

.footer-column {
    min-width: 160px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-gold);
}

.footer-column a {
    color: var(--accent-platinum);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    color: var(--accent-silver);
    font-size: 0.9rem;
}


/* --- Modals --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    /* Ensure tall forms remain accessible by scrolling inside the modal rather than cutting off */
    max-height: 85vh;               /* Allow some padding from viewport edges */
    overflow-y: auto;               /* Enable vertical scroll when content exceeds available height */
    overscroll-behavior: contain;   /* Prevent background scroll chaining on touch devices */
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

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

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
}

.close {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: var(--text-primary);
}

.modal-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-medium);
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

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

.form-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

/* Form Error States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea,
input.error,
select.error,
textarea.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background-color: rgba(220, 38, 38, 0.02);
}

.error-message,
.field-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
    animation: fadeInError 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .candidate-network-content .section-header,
    .candidate-cta-section {
        text-align: center;
        align-items: center;
    }

    /* Uniform button alignment on mobile */
    .hero-actions .btn,
    .cta-buttons .btn,
    .candidate-cta-section .btn,
    .tier-cta .btn,
    .modal .btn {
        width: 100%;         /* full-width for easier tapping */
        max-width: 280px;    /* keep a professional, consistent width */
        margin: 0.5rem auto; /* center horizontally with balanced spacing */
        display: block;
        text-align: center;
    }
    /* Ensure long text wraps nicely within small screens */
    .hero-description,
    .section-header p,
    .tier-description {
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }
    
    .value-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Recruiters page special styling */
.value-card.recruiters {
    border: 2px solid var(--secondary-gold);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.value-card.recruiters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

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

/* ===== ACCESSIBILITY & CODE QUALITY IMPROVEMENTS ===== */

/* Emoji Icon Accessibility */
.emoji-icon {
    display: inline-block;
    font-style: normal;
}

/* FAQ Styling Classes */
.faq-heading {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Privacy Policy Styling Classes */
.privacy-heading {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.privacy-main-heading {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.privacy-section-heading {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

/* CTA Disclaimer Styling */
.cta-disclaimer {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
}

/* Secondary Text Styling */
.text-secondary-muted {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* High-End Tier Cards for Recruiting Partners */
.tier-section {
    background-color: var(--bg-secondary);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Make cards in a row equal height */
}

.tier-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.tier-card.featured {
    border-color: var(--secondary-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 10;
}

.tier-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-bronze));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.tier-header {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.tier-card.featured .tier-header {
    border-bottom-color: rgba(217, 119, 6, 0.3);
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.tier-price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: super;
    margin-right: 0.25rem;
    color: var(--text-secondary);
}

.tier-period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tier-trial {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    background-color: rgba(217, 119, 6, 0.1);
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.tier-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tier-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes features down in shorter cards */
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1; /* This will make feature lists grow to fill space */
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.tier-features li:last-child {
    margin-bottom: 0;
}

.tier-features li::before {
    content: '✓';
    font-weight: 900;
    color: var(--secondary-gold);
    font-size: 1rem;
}

.tier-features li.premium {
    font-weight: 600;
    color: var(--text-primary);
}

.tier-features li.premium::before {
    color: var(--secondary-bronze);
}

.tier-cta {
    margin-top: 2rem; /* Consistent spacing */
}

.tier-card .btn {
    width: 100%;
}

.tier-card.featured .btn-primary {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3); }
    50% { box-shadow: 0 8px 28px rgba(217, 119, 6, 0.5); }
}

/* ==================== LANDING PAGE STYLES ==================== */

/* Landing Hero Section */
.landing-hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
    text-align: center;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(217, 119, 6, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(217, 119, 6, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.landing-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-bronze) 100%);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(217, 119, 6, 0.5);
        transform: scale(1.05);
    }
}

.landing-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.landing-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Platform Access Section */
.platform-access {
    margin: 2rem auto 3rem auto;
    text-align: center;
    max-width: 600px;
}

.access-notice {
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-bronze));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.access-notice h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.access-notice p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
}

.platform-access .btn {
    background: white;
    color: var(--secondary-gold);
    border: 2px solid white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-access .btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* User Type Cards */
.user-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.user-type-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.user-type-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(217, 119, 6, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.user-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold) 0%, var(--secondary-bronze) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user-type-card:hover::before {
    opacity: 1;
}

.user-type-icon {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-bronze) 100%);
    color: var(--text-white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.user-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.user-type-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.coming-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.coming-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: 700;
}

/* Early Access Section */
.early-access-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 0;
    position: relative;
}

.early-access-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.early-access-form {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.1);
    margin-top: 2rem;
}

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

.form-group-landing {
    text-align: left;
}

.form-group-landing label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group-landing .required {
    color: var(--secondary-gold);
}

.form-group-landing input,
.form-group-landing select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-primary);
}

.form-group-landing input:focus,
.form-group-landing select:focus {
    outline: none;
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-weight: 600;
    animation: slideInSuccess 0.5s ease;
}

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

/* Footer Landing */
.footer-landing {
    background: var(--primary-navy);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
}

.social-landing a {
    color: var(--secondary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-landing a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-landing p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Design for Landing Page */
@media (max-width: 768px) {
    .landing-title {
        font-size: 2.5rem;
    }
    
    .landing-subtitle {
        font-size: 1.1rem;
    }
    
    .user-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .user-type-card {
        padding: 2rem;
    }
    
    .early-access-form {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .landing-hero {
        padding: 1rem;
    }
    
    .landing-title {
        font-size: 2rem;
    }
    
    .user-type-card {
        padding: 1.5rem;
    }
    
    .early-access-form {
        padding: 1.5rem;
    }
}

/* Additional animations for landing page */
.user-type-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.user-type-card:nth-child(1) { animation-delay: 0.1s; }
.user-type-card:nth-child(2) { animation-delay: 0.2s; }
.user-type-card:nth-child(3) { animation-delay: 0.3s; }

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

/* ============================================ */
/* LOADING STATES - PROFESSIONAL & ACCESSIBLE */
/* ============================================ */

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    cursor: not-allowed;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: rgba(255, 255, 255, 0.9);
    animation: button-spin 1s linear infinite;
}

@keyframes button-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(217, 119, 6, 0.2);
    border-radius: 50%;
    border-top-color: var(--secondary-gold);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 100;
}

/* Input Loading States */
.input-loading {
    position: relative;
}

.input-loading::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    border-top-color: var(--secondary-gold);
    animation: spin 1s linear infinite;
    z-index: 10;
}

/* Mobile Touch Optimizations */
@media (max-width: 768px) {
    /* Enhanced touch targets */
    .btn, button, a, .nav-link {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 16px !important;
        touch-action: manipulation;
    }
    
    /* Improved modal behavior */
    .modal {
        padding: 10px !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-content {
        margin: 20px auto !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Touch-friendly form elements */
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 14px 16px !important;
        border-radius: 8px !important;
        touch-action: manipulation;
    }
    
    /* Improved navigation for mobile */
    .nav-menu {
        background: rgba(26, 37, 47, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-radius: 0 0 12px 12px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    }
    
    .nav-menu.active {
        animation: slideDown 0.3s ease-out !important;
    }
    
    /* Touch-optimized hamburger menu */
    .hamburger {
        padding: 8px !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        touch-action: manipulation;
    }
    
    .hamburger:active {
        transform: scale(0.95) !important;
        background-color: rgba(217, 119, 6, 0.1) !important;
    }
    
    /* Improved card interactions */
    .step-card, .value-card, .firm-card, .job-card, .candidate-card {
        transition: all 0.3s ease !important;
        touch-action: manipulation;
    }
    
    .step-card:active, .value-card:active, .firm-card:active, .job-card:active, .candidate-card:active {
        transform: scale(0.98) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Enhanced notification positioning for mobile */
    .notification {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
        border-radius: 12px !important;
    }
    
    /* Gesture-friendly swipe indicators */
    .modal-content::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
        margin: 8px auto;
    }
    
    /* Touch-optimized session warning */
    .session-warning-content {
        margin: 10px !important;
        padding: 1.5rem !important;
        border-radius: 12px !important;
        max-width: none !important;
    }
    
    .session-warning-buttons {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .session-warning-buttons button {
        padding: 12px 16px !important;
        border-radius: 8px !important;
        font-size: 16px !important;
    }
    
    /* Improved dashboard layouts for touch */
    .filter-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .results-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Touch-friendly pagination */
    .pagination {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    .pagination button {
        min-width: 44px !important;
        min-height: 44px !important;
        border-radius: 8px !important;
    }
    
    /* Swipe gesture support */
    .swipeable {
        touch-action: pan-y pinch-zoom;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }
    
    /* Improved focus styles for accessibility */
    *:focus-visible {
        outline: 3px solid var(--secondary-gold) !important;
        outline-offset: 2px !important;
        border-radius: 4px !important;
    }
}

/* Touch-specific animations */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes touchFeedback {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn, button {
        border: 2px solid currentColor !important;
    }
    
    .modal-content {
        border: 3px solid var(--primary-navy) !important;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode considerations for mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .modal-content {
        background-color: #1a1a1a !important;
        color: #ffffff !important;
        border: 1px solid #333 !important;
    }
    
    .notification {
        background-color: #2a2a2a !important;
        border: 1px solid #444 !important;
    }
} 

/* Professional Candidate Network Section */
.candidate-network-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid rgba(217, 119, 6, 0.1);
}

.candidate-network-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.candidate-network-content {
    padding-right: 2rem;
}

.professional-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
    color: var(--secondary-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    border: 2px solid var(--secondary-gold);
}

.candidate-network-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.professional-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
}

.trust-indicators {
    margin-bottom: 3rem;
}

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

.trust-row:last-child {
    margin-bottom: 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-icon {
    background: var(--secondary-gold);
    color: var(--primary-navy);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.trust-content h4 {
    color: var(--primary-navy);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.trust-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.candidate-cta-section {
    text-align: center;
    padding: 2rem;
    background: rgba(217, 119, 6, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.cta-assurance {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.candidate-showcase {
    position: relative;
}

.showcase-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(217, 119, 6, 0.1);
    position: relative;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-bronze));
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-badge {
    background: var(--primary-navy);
    color: var(--secondary-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.showcase-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.showcase-content > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.profile-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    background: rgba(30, 41, 59, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(217, 119, 6, 0.08);
    transform: translateX(4px);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    background: var(--primary-navy);
    color: var(--secondary-gold);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.showcase-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .candidate-network-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .candidate-network-content {
        padding-right: 0;
    }
    
    .candidate-network-content h2 {
        font-size: 2.25rem;
    }
    
    .professional-subtitle {
        font-size: 1.125rem;
    }
    
    .trust-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-card {
        padding: 2rem;
    }
    
    .professional-badge {
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 480px) {
    .candidate-network-section {
        padding: 4rem 0;
    }
    
    .candidate-network-content h2 {
        font-size: 1.875rem;
    }
    
    .professional-subtitle {
        font-size: 1rem;
    }
    
    .showcase-card {
        padding: 1.5rem;
    }
    
    .trust-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .trust-icon {
        align-self: flex-start;
    }
} 

/* Mobile First Responsive Design - COMPREHENSIVE */
@media (max-width: 768px) {
    /* Much smaller mobile navigation layout */
    .navbar {
        padding: 0.5rem 0; /* Much smaller navbar padding */
    }
    
    .nav-container {
        padding: 0 0.75rem; /* Smaller container padding */
    }
    
    .nav-logo h2 {
        font-size: 1rem; /* Much smaller logo on mobile */
    }
    
    /* Navigation dropdown fixes */
    .nav-menu {
        display: none;
        position: fixed;
        top: 50px; /* Much closer to header */
        left: 0;
        width: 100%;
        background: white; /* White background for readability */
        padding: 0.5rem 0; /* Smaller padding */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 0; /* No gap between items */
        animation: slideDown 0.3s ease-out;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-link {
        padding: 0.5rem 1rem; /* Much smaller padding */
        font-size: 0.9rem; /* Smaller font for mobile */
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
        color: var(--primary-navy); /* Blue text only */
        background: white; /* White background */
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-navy); /* Keep blue text */
        background: white; /* Keep white background */
        border-bottom-color: var(--border-light);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.1rem; /* Much smaller padding */
        z-index: 1001;
    }

    .hamburger span {
        width: 18px; /* Much smaller for mobile */
        height: 2px;
        background: var(--primary-navy);
        margin: 2px 0; /* Smaller margin */
        transition: 0.3s;
        border-radius: 1px;
    }

    .hamburger:active {
        transform: scale(0.95);
    }
    
    /* Much smaller mobile CTA buttons */
    .nav-cta {
        gap: 0.25rem; /* Much smaller gap on mobile */
    }
    
    .nav-cta .btn {
        padding: 6px 12px; /* Much smaller buttons on mobile */
        font-size: 0.7rem;
        letter-spacing: 0.3px;
        min-width: auto;
    }

    /* Hero section mobile optimization */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content {
        order: 1;
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
        width: 100%;
    }

    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
        text-align: center;
        width: 100%;
    }

    .hero-stats .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-stats .stat-number,
    .hero-stats .stat-label {
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 50px;
        font-size: 1.1rem;
        padding: 1rem;
    }

    .hero-visual {
        order: 2;
        max-width: 100%;
        margin-top: 1rem;
    }

    .hero-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    /* Content sections mobile optimization */
    .section-header {
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
    }

    /* Grid layouts mobile optimization */
    .value-grid,
    .steps-grid,
    .tier-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* Card components mobile optimization */
    .value-card,
    .step-card,
    .tier-card {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .value-card h3,
    .step-card h3,
    .tier-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .value-card p,
    .step-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Button optimization for mobile */
    .btn, button, a.btn {
        min-height: 44px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .btn.large {
        min-height: 50px;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Modal optimization for mobile */
    .modal {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .modal-content {
        width: 100%;
        max-width: calc(100vw - 2rem);
        margin: 0;
        border-radius: 12px;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }

    .modal-header {
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-light);
    }

    .modal-form {
        padding: 1.5rem;
    }

    .close {
        font-size: 1.5rem;
        padding: 0.5rem;
        min-width: 32px;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Form elements mobile optimization */
    input, select, textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        display: block;
    }

    /* Trust stats mobile */
    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .trust-stat {
        padding: 1rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    /* CTA section mobile */
    .cta-section {
        padding: 60px 0;
        text-align: center;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .cta-content {
        padding: 0 1rem;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        color: var(--primary-navy);
        text-align: center;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        color: var(--text-secondary);
        text-align: center;
        line-height: 1.6;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Footer mobile optimization */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column {
        padding: 1rem 0;
    }

    .footer-bottom {
        text-align: center;
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    /* Tier cards mobile specific */
    .tier-card {
        border: 2px solid var(--border-light);
        border-radius: 12px;
        background: var(--bg-white);
    }

    .tier-header {
        padding: 1.5rem;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
    }

    .tier-name {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .tier-price {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-navy);
        margin: 0.5rem 0;
    }

    .tier-period {
        font-size: 1rem;
        color: var(--text-secondary);
    }

    .tier-trial {
        background: var(--secondary-gold);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        margin-top: 1rem;
        display: inline-block;
    }

    .tier-body {
        padding: 1.5rem;
    }

    .tier-features {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }

    .tier-features li {
        padding: 0.75rem 0;
        font-size: 1rem;
        line-height: 1.5;
        border-bottom: 1px solid var(--border-light);
    }

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

    .tier-cta {
        margin-top: 1.5rem;
    }

    .tier-cta .btn {
        width: 100%;
    }

    /* Beta banner mobile */
    .beta-banner {
        padding: 0.75rem 0;
        text-align: center;
    }

    .beta-banner p {
        font-size: 0.9rem;
        margin: 0;
        padding: 0 1rem;
    }

    /* Container mobile */
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }


}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .modal-content {
        border-radius: 8px;
        margin: 0.5rem;
        max-width: calc(100vw - 1rem);
    }

    .tier-price {
        font-size: 1.75rem;
    }

    .tier-name {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn.large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        line-height: 1.4;
    }
} 

/* On Your Terms Section */
.on-your-terms-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.terms-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 119, 6, 0.2);
}

.terms-icon {
    margin: 0 auto 1.5rem;
    background: var(--primary-navy);
    color: var(--secondary-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.terms-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Revamped Candidate Network Section - Executive Appeal */
.candidate-network-revamped {
    background: var(--primary-dark);
    padding: 6rem 0;
    color: var(--bg-light);
}

.candidate-network-revamped .section-header {
    margin-bottom: 4rem;
}

.candidate-network-revamped .section-header h2 {
    color: var(--bg-white);
    font-size: 2.75rem;
    font-weight: 700;
}

.candidate-network-revamped .section-subheading-revamped {
    color: var(--accent-platinum);
    font-size: 1.125rem;
    max-width: 650px;
    margin: 1rem auto 0;
}

.section-badge-revamped {
    display: inline-block;
    background: rgba(217, 119, 6, 0.1);
    color: var(--secondary-gold);
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.features-grid-revamped {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card-revamped {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-revamped:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(217, 119, 6, 0.3);
}

.feature-icon-revamped {
    margin: 0 auto 1.5rem;
    color: var(--secondary-gold);
}

.feature-card-revamped h3 {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

.cta-bottom-revamped .btn-primary {
    border-color: var(--secondary-gold);
    color: var(--secondary-gold);
}

.cta-bottom-revamped .btn-primary:hover {
    background-color: var(--secondary-gold);
    color: var(--text-white);
}

@media (max-width: 768px) {
    .features-grid-revamped {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .candidate-network-revamped .section-header h2 {
        font-size: 2rem;
    }
}

