* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #f5f7fa;
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header */
header {
    text-align: left;
    padding: 20px 30px;
    background: #0f1419;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.2em;
    color: #fff;
    margin: 0;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    color: #b4b4c0;
    font-size: 1.1em;
}

.back-link {
    position: static;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

.back-link:hover {
    color: #ffffff;
}

.header-actions {
    position: static;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions span {
    color: #b4b4c0;
    font-size: 0.9em;
}

.header-actions .btn {
    margin: 0;
}

/* Main Content */
main {
    padding-top: 0;
}

/* Navigation */
.admin-nav {
    background: white;
    border: 1px solid #e0e4e8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.admin-nav a {
    color: #5a6c7d;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.admin-nav a:hover {
    background: #f0f2f4;
    color: #2c3e50;
}

.admin-nav a.active {
    background: #2c3e50;
    color: #fff;
}

/* Cards */
.card {
    background: white;
    border: 1px solid #e0e4e8;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.verify-card {
    max-width: 500px;
    margin: 0 auto;
}

/* Page Wrapper */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.page-main .card {
    width: 100%;
    border-top: 10px solid #1463FF;
}

.page-main .card:not(:last-child) {
    margin-bottom: 0;
    border-radius: 8px;
}

.page-main .card:not(:first-child) {
    border-radius: 8px;
    margin-top: 0;
}

.page-main .error-card,
.page-main .success-card {
    margin-top: 40px !important;
}

.card h2 {
    color: #1e1e28;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 2px solid #e0e4e8;
    padding-bottom: 10px;
}

.card h3 {
    color: #2c3e50;
    margin: 25px 0 15px;
    font-size: 1.3em;
}

/* Landing Page */
.landing-main {
    text-align: center;
}

.welcome-card {
    max-width: 800px;
    margin: 0 auto 40px;
}

.welcome-card p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #5a6c7d;
}

.actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.action-card {
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: #5a6c7d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.action-card p {
    color: #5a6c7d;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.125s;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: -0.02em;
}

.btn-primary {
    background: hsl(220, 100%, 54%);
    color: #fff;
    box-shadow: 0 0 0 0 transparent;
}

.btn-primary:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), hsl(220, 100%, 54%);
    box-shadow: 0 4px 8px rgba(20, 99, 255, 0.3);
}

.btn-primary:focus {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), hsl(220, 100%, 54%);
    box-shadow: 0px 0px 0px 3px rgba(20, 99, 255, 0.12);
}

.btn-primary:active {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), hsl(220, 100%, 54%);
}

.btn-secondary {
    background: rgba(107, 124, 147, 0.8);
    color: #fff;
    box-shadow: 0 0 0 0 transparent;
}

.btn-secondary:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), rgba(107, 124, 147, 0.8);
    box-shadow: 0 4px 8px rgba(107, 124, 147, 0.3);
}

.btn-secondary:focus {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), rgba(107, 124, 147, 0.8);
    box-shadow: 0px 0px 0px 3px rgba(107, 124, 147, 0.12);
}

.btn-small {
    padding: 6px 12px;
    font-size: 13px;
    height: 32px;
    line-height: 20px;
}

.btn-warning {
    background: #e89000;
    color: #fff;
}

.btn-warning:hover {
    background: #d08000;
}

.btn-danger {
    background: #e74c3c;
    color: #fff;
}

.btn-danger:hover {
    background: #d73c2c;
}

.btn-success {
    background: #20a050;
    color: #fff;
}

.btn-success:hover {
    background: #189040;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #d0d4d8;
    border-radius: 5px;
    color: #2c3e50;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a6c7d;
    box-shadow: 0 0 0 3px rgba(90, 108, 125, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #7a8c9e;
    font-size: 0.9em;
}

.required {
    color: #e74c3c;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border: 1px solid #e0e4e8;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.stat-card h3 {
    color: #5a6c7d;
    font-size: 1em;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #2c3e50;
}

.stat-card.active .stat-number {
    color: #20a050;
}

.stat-card.revoked .stat-number {
    color: #e74c3c;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.quick-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    height: 44px;
    line-height: 20px;
    transition: all 0.125s ease;
}

.quick-actions .btn-primary {
    background: hsl(220, 100%, 54%);
    box-shadow: 0 2px 8px rgba(20, 99, 255, 0.2);
}

.quick-actions .btn-primary:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), hsl(220, 100%, 54%);
    box-shadow: 0 6px 16px rgba(20, 99, 255, 0.35);
    transform: translateY(-2px);
}

.quick-actions .btn-secondary {
    background: rgba(107, 124, 147, 0.8);
    box-shadow: 0 2px 8px rgba(107, 124, 147, 0.2);
}

.quick-actions .btn-secondary:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), rgba(107, 124, 147, 0.8);
    box-shadow: 0 6px 16px rgba(107, 124, 147, 0.35);
    transform: translateY(-2px);
}

/* Tables */
.loa-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}

.loa-table thead {
    background: #f8f9fa;
}

.loa-table th {
    padding: 15px;
    text-align: left;
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #e0e4e8;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.loa-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f2f4;
    color: #2c3e50;
}

.loa-table tbody tr {
    transition: background 0.2s;
}

.loa-table tbody tr:hover {
    background: #f8f9fa;
}

.loa-table code {
    background: #f0f2f4;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #2c3e50;
    border: 1px solid #d0d4d8;
}

.details-table {
    width: 100%;
    margin: 15px 0;
}

.details-table td {
    padding: 10px;
    border-bottom: 1px solid #f0f2f4;
}

.details-table td:first-child {
    width: 200px;
    color: #5a6c7d;
    font-weight: 500;
}

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

.actions-cell .btn {
    margin-right: 5px;
}

/* Status Badges */
.status-active {
    color: #20a050;
    font-weight: bold;
}

.status-revoked {
    color: #e74c3c;
    font-weight: bold;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 20px;
}

.status-badge.status-active {
    background: #e8f5ec;
    border: 1px solid #20a050;
    color: #20a050;
}

.status-badge.status-revoked {
    background: #fde8e6;
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

/* Messages */
.error-message,
.error-card {
    background: #fde8e6;
    border: 1px solid #e74c3c;
    color: #c0392b;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.success-card {
    background: #e8f5ec;
    border: 1px solid #20a050;
    padding: 30px !important;
}

.success-card h3 {
    color: #20a050;
    margin-top: 0;
}

.success-card p {
    color: #2c3e50;
}

.revoked-notice {
    background: #fde8e6;
    border: 2px solid #e74c3c;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.revoked-notice strong {
    color: #e74c3c;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.revoked-notice p {
    color: #2c3e50;
}

/* LOA Details */
.loa-details {
    margin-top: 20px;
}

.loa-details h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.pdf-download {
    margin-top: 20px;
    text-align: center;
}

/* Login Card */
.login-card {
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 16px 20px;
    background: transparent;
    color: #6b7280;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    z-index: 100;
}

footer p {
    margin: 0;
    font-size: 13px;
}

footer a {
    color: #6b7280;
    text-decoration: none;
}

footer a:hover {
    color: #9ca3af;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    .header-actions {
        position: static;
        justify-content: center;
        margin-top: 15px;
    }

    .back-link {
        position: static;
        display: block;
        margin-bottom: 15px;
    }

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

    .admin-nav {
        flex-direction: column;
    }

    .loa-table {
        font-size: 0.9em;
    }

    .loa-table th,
    .loa-table td {
        padding: 8px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .quick-actions {
        flex-direction: column;
    }

    .quick-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .card {
        padding: 20px;
    }

    header {
        padding: 20px 10px;
    }

    .loa-table {
        display: block;
        overflow-x: auto;
    }
}

/* Dark Theme Landing Page */
.dark-theme {
    background: #000000;
    background: -moz-linear-gradient(135deg, #000000 0%, #0a0a0f 100%);
    background: -webkit-linear-gradient(135deg, #000000 0%, #0a0a0f 100%);
    background: linear-gradient(135deg, #000000 0%, #0a0a0f 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.dark-theme.landing-page {
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 768px) {
    .dark-theme.landing-page {
        height: auto;
        overflow: auto;
    }
}

.dark-theme .container {
    background: transparent;
}

/* Page Wrapper for Standard Pages */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-header {
    background: rgba(20, 20, 25, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    position: relative;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5em;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

.page-header .back-link {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 5px;
}

.page-header .back-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.verify-card,
.login-card {
    max-width: 600px;
    margin: 0 auto 30px;
}

.page-footer {
    text-align: center;
    padding: 30px 40px;
    color: #b4b4c0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 15, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: auto;
}

.page-footer p {
    margin: 0;
}

.dark-theme header {
    background: rgba(20, 20, 25, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
}

.dark-theme header h1 {
    color: #ffffff;
}

.dark-theme .subtitle {
    color: #b4b4c0;
}

.dark-theme .back-link {
    color: #e0e0e0;
}

.dark-theme .back-link:hover {
    color: #ffffff;
}

.dark-theme .card {
    background: rgba(20, 20, 25, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.dark-theme .card h2,
.dark-theme .card h3 {
    color: #ffffff;
    border-bottom: none;
}

.dark-theme .card h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
}

.dark-theme .form-group {
    margin-bottom: 25px;
}

.dark-theme .form-group label {
    color: #d0d4d8;
    font-size: 1em;
    margin-bottom: 10px;
}

.dark-theme .form-group input[type="text"],
.dark-theme .form-group input[type="email"],
.dark-theme .form-group input[type="password"],
.dark-theme .form-group input[type="tel"],
.dark-theme .form-group input[type="date"],
.dark-theme .form-group textarea {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1em;
    padding: 14px;
}

.dark-theme .form-group input::placeholder {
    color: #5a6c7d;
}

.dark-theme .form-group input:focus,
.dark-theme .form-group textarea:focus {
    border-color: #ffffff;
    background: rgba(15, 15, 20, 0.95);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.dark-theme .btn-primary {
    width: 100%;
    padding: 14px 30px;
    font-size: 1.05em;
}

.dark-theme .form-group small {
    color: #7a8c9e;
}

.dark-theme .admin-nav {
    background: rgba(20, 20, 25, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .admin-nav a {
    color: #b4b4c0;
}

.dark-theme .admin-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dark-theme .admin-nav a.active {
    background: #ffffff;
    color: #000000;
}

.dark-theme .loa-table {
    background: rgba(20, 20, 25, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .loa-table thead {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .loa-table th {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.dark-theme .loa-table td {
    color: #d0d4d8;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .loa-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dark-theme .loa-table code {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.15);
}

.dark-theme .stat-card {
    background: rgba(20, 20, 25, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .stat-card h3 {
    color: #b4b4c0;
}

.dark-theme .stat-number {
    color: #ffffff;
}

.dark-theme .details-table td {
    color: #d0d4d8;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .details-table td:first-child {
    color: #7a8c9e;
}

.dark-theme footer {
    background: rgba(15, 15, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b4b4c0;
}

.dark-theme footer a {
    color: #e0e0e0;
}

.dark-theme .error-message,
.dark-theme .error-card {
    background: rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
    color: #ff6b6b;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .success-card {
    background: rgba(32, 160, 80, 0.15);
    border-color: #20a050;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .success-card h3 {
    color: #20a050;
}

.dark-theme .success-card p {
    color: #d0d4d8;
}

.dark-theme .revoked-notice {
    background: rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .revoked-notice strong {
    color: #ff6b6b;
}

.dark-theme .revoked-notice p {
    color: #d0d4d8;
}

.dark-theme .status-badge.status-active {
    background: rgba(32, 160, 80, 0.2);
    border-color: #20a050;
    color: #20a050;
}

.dark-theme .status-badge.status-revoked {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    color: #ff6b6b;
}

.landing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    color: #ffffff;
    display: flex;
    align-items: center;
}

.brand-name {
    font-size: 1.3em;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #b4b4c0;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.landing-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 40px;
    align-items: center;
    flex: 1;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-description {
    color: #b4b4c0;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-description p {
    margin-bottom: 15px;
}

.hero-description strong {
    color: #ffffff;
    font-weight: 600;
}

.inline-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.inline-link:hover {
    border-bottom-color: #ffffff;
}

.hero-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #d0d4d8;
    font-size: 0.95em;
}

.feature-icon {
    color: #ffffff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta {
    text-align: left;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-subtitle {
    margin-top: 15px;
    color: #7a8c9e;
    font-size: 0.95em;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

.globe-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.1));
}

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

.landing-footer {
    background: rgba(15, 15, 20, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.footer-info p,
.footer-tagline p,
.footer-copyright p {
    color: #b4b4c0;
    margin: 8px 0;
    font-size: 0.95em;
}

.footer-info strong {
    color: #ffffff;
}

.footer-info a {
    color: #ffffff;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-tagline {
    font-style: italic;
}

@media (max-width: 1024px) {
    .landing-hero {
        grid-template-columns: 1fr;
        padding: 60px 30px;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 40px;
    }

    .globe-container {
        max-width: 300px;
    }

    .hero-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .landing-container {
        height: auto;
    }

    .dark-theme.landing-page {
        height: auto;
        overflow: auto;
    }

    .landing-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-description {
        font-size: 1em;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .landing-hero {
        display: flex;
        flex-direction: column-reverse;
        padding: 40px 20px;
        gap: 30px;
        overflow: visible;
    }

    .hero-visual {
        display: none;
    }

    .globe-container {
        max-width: 250px;
        margin: 0 auto;
    }

    .page-header {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 1.8em;
    }

    .page-header .back-link {
        position: static;
        transform: none;
        display: block;
        margin-bottom: 15px;
        text-align: left;
    }

    .page-main {
        padding: 0 20px 40px;
    }
}

