/* ========================================
   Landing Page & Chat & Calendar Styles
   ======================================== */

/* Landing Page */
.landing-page {
    min-height: 100vh;
    height: 100vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.landing-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.landing-logo .logo-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.btn-landing-login {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-landing-login:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

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

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0.5rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.mockup-content {
    display: grid;
    gap: 1rem;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.15);
    height: 80px;
    border-radius: 8px;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Landing Footer */
.landing-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 4rem;
    opacity: 0.7;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-header-info i {
    font-size: 1.5rem;
}

.chat-status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chat-status i {
    font-size: 0.5rem;
    color: #4ade80;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.chat-message-support {
    justify-content: flex-start;
}

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

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.chat-bubble {
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 70%;
}

.chat-message-user .chat-bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.chat-time {
    font-size: 0.7rem;
    opacity: 0.6;
    display: block;
    margin-top: 0.25rem;
}

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
}

.chat-send {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Sidebar (Calendar) */
.right-sidebar {
    position: fixed;
    top: 56px;
    right: -400px;
    width: 400px;
    height: calc(100vh - 56px);
    background: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    transition: right 0.3s ease;
    z-index: 900;
    overflow-y: auto;
}

.right-sidebar.open {
    right: 0;
}

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

.right-sidebar-header h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.right-sidebar-content {
    padding: 1.5rem;
}

/* Calendar Widget */
.calendar-widget {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
}

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

.calendar-nav {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-secondary);
    padding: 0.5rem;
}

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

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem;
}

.calendar-day {
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.calendar-day:hover {
    background: var(--bg-tertiary);
}

.calendar-day.today {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.calendar-day.other-month {
    opacity: 0.3;
}

/* Events List */
.events-list {
    margin-top: 2rem;
}

.events-list h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: transform 0.2s;
}

.event-item:hover {
    transform: translateX(5px);
}

.event-date {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.event-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-month {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.event-details {
    flex: 1;
}

.event-details strong {
    display: block;
    margin-bottom: 0.25rem;
}

.event-details p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .right-sidebar {
        width: 100%;
        right: -100%;
    }

    .chat-window {
        width: 100%;
        max-width: 380px;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section h2,
    .cta-section h2 {
        font-size: 1.75rem;
    }
}

/* Custom Scrollbar Styling */
.landing-page::-webkit-scrollbar {
    width: 12px;
}

.landing-page::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.landing-page::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: background 0.3s;
}

.landing-page::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Firefox scrollbar */
.landing-page {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

/* Login Page Fixes */
.login-container {
    overflow-y: scroll !important;
    padding: 3rem 1rem !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    height: 100vh !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.login-box {
    margin: 2rem auto !important;
    position: relative;
    max-height: none !important;
    height: auto !important;
}

.login-back-button {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    z-index: 10;
}

.login-back-button:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateX(-3px);
}

/* ========================================
   Trial Form Styles
   ======================================== */
.trial-form-container {
    max-width: 600px;
    margin: 2rem auto 0;
}

.trial-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trial-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.trial-form .form-group {
    flex: 1;
}

.trial-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.trial-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.trial-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.trial-form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

@media (max-width: 768px) {
    .trial-form .form-row {
        flex-direction: column;
    }
}

/* ========================================
   Company Verification Modal
   ======================================== */
.btn-landing-verify {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 1rem;
}

.btn-landing-verify:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.verify-modal-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 2rem;
    max-width: 680px;
    width: 95%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.verify-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.verify-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.verify-modal-content h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.verify-modal-content h2 i {
    margin-right: 0.5rem;
    color: #667eea;
}

.verify-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.verify-input-group {
    display: flex;
    gap: 0.75rem;
}

.verify-input-group input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.verify-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.verify-input-group input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.1);
}

.verify-input-group button {
    padding: 1rem 1.5rem;
    white-space: nowrap;
}

.verify-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.verify-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.verify-message.warning {
    display: block;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

.verify-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.verify-result h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verify-result h3 i {
    color: #22c55e;
}

.verify-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
}

.verify-result-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.verify-result-item label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.verify-result-item span {
    color: white;
    font-weight: 500;
}

.verify-result-item.full-width {
    grid-column: 1 / -1;
}

.verify-result-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.verify-result-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.verify-result-status.inactive {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.verify-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: center;
}

.verify-note i {
    margin-right: 0.25rem;
}

@media (max-width: 680px) {
    .verify-result-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .verify-input-group {
        flex-direction: column;
    }

    .verify-result-grid {
        grid-template-columns: 1fr;
    }

    .landing-header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn-landing-verify {
        margin-right: 0;
        order: 3;
        flex: 1;
    }
    
    .btn-landing-login {
        order: 2;
        flex: 1;
    }
}

/* Landing footer link */
.landing-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.landing-footer a:hover {
    color: white;
    text-decoration: underline;
}

/* ========================================
   Admin Status Badges
   ======================================== */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-new {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.status-active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-inactive {
    background: rgba(107, 114, 128, 0.15);
    color: #6b7280;
}

.admin-section h3 {
    color: #f59e0b;
}

.admin-section .nav-badge {
    background: #ef4444;
}

/* Form select in header */
.content-actions .form-select {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.9rem;
}

.actions-cell {
    white-space: nowrap;
}

.actions-cell .btn {
    padding: 0.4rem 0.6rem;
}

/* ========================================
   Trial Registration Modal
   ======================================== */
.trial-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.trial-modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.trial-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.trial-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.trial-modal-content h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.trial-modal-content h2 i {
    margin-right: 0.5rem;
}

.trial-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.trial-modal .trial-form {
    background: transparent;
    padding: 0;
    border: none;
}

.trial-modal .form-group {
    margin-bottom: 1rem;
}

.trial-modal .form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.trial-modal .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.trial-modal .form-group input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.trial-modal button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
    background: white;
    color: #667eea;
    border: none;
    font-weight: 600;
}

.trial-modal button[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.9);
}

.trial-modal .form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.trial-modal .form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
}

.trial-modal .form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

/* ========================================
   Two-Column Verify Result Layout
   ======================================== */
.verify-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
}

.verify-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
}

.verify-column h4 {
    color: white;
    margin: 0 0 0.875rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.verify-column h4 i {
    color: #667eea;
    font-size: 0.875rem;
}

.verify-financial-info h4 i {
    color: #22c55e;
}

/* Company Info List */
.verify-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.verify-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-info-row:last-child {
    border-bottom: none;
}

.verify-info-row.full {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.verify-info-row label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

.verify-info-row span {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: right;
}

.verify-info-row.full span {
    text-align: left;
}

/* Financial Table */
.verify-financial-table {
    overflow-x: auto;
}

.verify-financial-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.verify-financial-table th,
.verify-financial-table td {
    padding: 0.5rem 0.375rem;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.verify-financial-table th:first-child,
.verify-financial-table td:first-child {
    text-align: left;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.verify-financial-table th {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.verify-financial-table td {
    color: white;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.verify-financial-table tbody tr:last-child td {
    border-bottom: none;
}

.verify-more-data {
    margin: 0.75rem 0 0 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-align: center;
}

.verify-more-data i {
    margin-right: 0.25rem;
}

.verify-no-data {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
    text-align: center;
    padding: 1.5rem 0;
    margin: 0;
}

.verify-no-data i {
    margin-right: 0.375rem;
}

/* Responsive */
@media (max-width: 600px) {
    .verify-two-columns {
        grid-template-columns: 1fr;
    }
}

.text-success {
    color: #22c55e !important;
}

.text-danger {
    color: #ef4444 !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   ENHANCED LANDING PAGE WITH IMAGES
   ======================================== */

/* Hero Section with Background Image */
.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 0;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.92) 0%, 
        rgba(118, 75, 162, 0.88) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 1;
}

/* Dashboard Mockup Enhanced */
.dashboard-mockup {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1rem;
    border-radius: 10px 10px 0 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.mockup-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.2);
    height: 100px;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mockup-card::before {
    content: "";
    display: block;
    width: 60%;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 6px;
}

.mockup-card::after {
    content: "";
    display: block;
    width: 40%;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

/* Features Section with Background */
.features-section {
    position: relative;
    padding: 6rem 0;
    background-image: url(/images/stock/tech-abstract.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.95) 0%, 
        rgba(118, 75, 162, 0.95) 100%);
    z-index: 0;
}

.features-section h2,
.features-grid {
    position: relative;
    z-index: 1;
}

/* Feature Cards Enhanced */
.feature-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section Enhanced */
.cta-section {
    position: relative;
    text-align: center;
    padding: 6rem 0;
    background-image: url(/images/stock/laptop-work.jpg);
    background-size: cover;
    background-position: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.9) 0%, 
        rgba(118, 75, 162, 0.9) 100%);
    z-index: 0;
}

.cta-section h2,
.cta-section p,
.cta-section button {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Buttons */
.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-large::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;
}

.btn-large:hover::before {
    left: 100%;
}

.btn.btn-primary.btn-large {
    background: white;
    color: #667eea;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn.btn-primary.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn.btn-secondary.btn-large {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn.btn-secondary.btn-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Stats Section (Optional - can add later) */
.stats-section {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 0;
    margin-top: -3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer Enhanced */
.landing-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 0;
}

/* Image Attribution (for legal compliance) */
.image-attribution {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.image-attribution a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.image-attribution a:hover {
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0;
        min-height: auto;
    }

    .dashboard-mockup {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-section {
        background-attachment: scroll;
    }
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }
}

/* Animation for elements appearing on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }
