/* ==========================================
   RESET & BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ==========================================
   AUTHENTICATION PAGES
   ========================================== */
.auth-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #000000;
    overflow: hidden;
}

/* Background Elements */
.auth-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(14, 198, 206, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 198, 206, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 1;
}

.auth-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 198, 206, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.auth-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}

/* Logo */
.auth-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    transition: transform 0.2s;
}

.auth-logo:hover {
    transform: scale(1.05);
}

.auth-logo svg {
    color: #0EC6CE;
}

.auth-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #ffffff;
}

/* Auth Box */
.auth-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Header */
.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 198, 206, 0.15);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 50px;
    color: #0EC6CE;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.auth-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Alert */
.auth-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.auth-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.auth-alert svg {
    flex-shrink: 0;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.auth-form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.2s;
}

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

.auth-form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 198, 206, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 198, 206, 0.1);
}

/* Checkbox */
.auth-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.auth-form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.auth-form-checkbox label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Error Messages */
.auth-form-group .invalid-feedback,
.auth-form-checkbox .invalid-feedback {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Buttons */
.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-top: 0.5rem;
}

.auth-btn-primary {
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(14, 198, 206, 0.3);
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 198, 206, 0.5);
}

.auth-btn-primary svg {
    transition: transform 0.3s;
}

.auth-btn-primary:hover svg {
    transform: translateX(4px);
}

/* Divider */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Footer */
.auth-footer {
    text-align: center;
}

.auth-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.auth-footer a {
    color: #0EC6CE;
    font-weight: 600;
    transition: color 0.2s;
}

.auth-footer a:hover {
    color: #0AA8AF;
}

/* Trust Indicators */
.auth-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.auth-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.auth-trust-item svg {
    color: #0EC6CE;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .auth-box {
        padding: 2rem 1.5rem;
    }

    .auth-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* ==========================================
   APPLICATION PAGES (Dashboard, New Project)
   ========================================== */

.app-page {
    min-height: 100vh;
    background: #000000;
    color: #ffffff;
}

/* App Navigation */
.app-nav {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.app-nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-nav-brand:hover {
    transform: scale(1.02);
    color: #ffffff;
}

.app-nav-brand svg {
    color: #0EC6CE;
}

.app-nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #818cf8;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.admin-switcher-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #818cf8;
    color: #a5b4fc;
    transform: translateY(-1px);
}

.admin-switcher-btn svg {
    flex-shrink: 0;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #000000;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
}

.user-logout {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.user-logout:hover {
    color: #0EC6CE;
}

/* Main Content Area */
.app-content {
    padding: 3rem 2rem;
}

.app-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Headers */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.app-header-centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-header-text h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-header-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Badges */
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 198, 206, 0.1);
    border: 1px solid rgba(14, 198, 206, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0EC6CE;
    margin-bottom: 1.5rem;
}

.app-badge svg {
    color: #0EC6CE;
}

/* Buttons */
.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
}

.app-btn-primary {
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(14, 198, 206, 0.3);
}

.app-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 198, 206, 0.4);
    color: #000000;
}

.app-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.app-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.app-btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

/* Trial Banner */
.trial-banner {
    background: rgba(14, 198, 206, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(14, 198, 206, 0.2);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.trial-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trial-icon svg {
    color: #0EC6CE;
}

.trial-content {
    flex: 1;
}

.trial-title {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.trial-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Project Card */
.project-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 198, 206, 0.3);
    box-shadow: 0 12px 40px rgba(14, 198, 206, 0.1);
}

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

.project-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    flex: 1;
}

.project-status {
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.status-pending {
    background: rgba(251, 191, 36, 0.1);
    color: #FBB024;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.status-active {
    background: rgba(14, 198, 206, 0.1);
    color: #0EC6CE;
    border: 1px solid rgba(14, 198, 206, 0.2);
}

.status-completed {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.project-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.5rem 0;
}

.project-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.project-date svg {
    color: rgba(255, 255, 255, 0.3);
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0EC6CE;
    text-decoration: none;
    transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-link:hover {
    gap: 0.75rem;
    color: #0EC6CE;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.empty-icon {
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.empty-icon svg {
    color: #ffffff;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}

.empty-state p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 2rem 0;
}

/* Form Card */
.form-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
}

/* Forms */
.app-form {
    width: 100%;
}

.app-form-group {
    margin-bottom: 1.75rem;
}

.app-form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.625rem;
}

.app-form-group input,
.app-form-group textarea,
.app-form-group select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-form-group input::placeholder,
.app-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.app-form-group input:focus,
.app-form-group textarea:focus,
.app-form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #0EC6CE;
    box-shadow: 0 0 0 3px rgba(14, 198, 206, 0.1);
}

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

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.app-form-group .invalid-feedback,
.app-form-group .form-error-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #EF4444;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
}

.form-section-header {
    margin-bottom: 1.75rem;
}

.form-section-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.form-section-header p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.form-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 2.5rem 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Help Card */
.help-card {
    background: rgba(14, 198, 206, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(14, 198, 206, 0.15);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.help-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 198, 206, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-icon svg {
    color: #0EC6CE;
}

.help-content {
    flex: 1;
}

.help-title {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.help-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.help-text a {
    color: #0EC6CE;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.help-text a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-nav-content {
        padding: 1rem 1.5rem;
    }

    .app-content {
        padding: 2rem 1.5rem;
    }

    .app-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .user-info {
        display: none;
    }

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

    .form-card {
        padding: 2rem 1.5rem;
    }

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

    .form-actions .app-btn {
        width: 100%;
        justify-content: center;
    }

    .help-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   NAVIGATION ENHANCED
   ========================================== */
.nav-enhanced {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-enhanced.nav-scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand/Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.nav-brand-icon {
    color: #0EC6CE;
    flex-shrink: 0;
}

.nav-brand-text {
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.nav-brand-badge {
    padding: 0.25rem 0.5rem;
    background: rgba(14, 198, 206, 0.15);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0EC6CE;
}

/* Desktop Links */
.nav-links-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link-item {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0EC6CE;
    transition: width 0.3s;
}

.nav-link-item:hover {
    color: #ffffff;
}

.nav-link-item:hover::after {
    width: 100%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* CTA Button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    color: #000000;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(14, 198, 206, 0.25);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 198, 206, 0.35);
}

.nav-cta-btn svg {
    transition: transform 0.2s;
}

.nav-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Mobile Toggle */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 198, 206, 0.3);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.nav-mobile-menu {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.nav-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

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

.nav-mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s;
}

.nav-mobile-link svg {
    color: rgba(255, 255, 255, 0.5);
}

.nav-mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 198, 206, 0.3);
    color: #ffffff;
}

.nav-mobile-link:hover svg {
    color: #0EC6CE;
}

.nav-mobile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1rem 0;
}

.nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    color: #000000;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 8px 30px rgba(14, 198, 206, 0.3);
}

/* Scroll Progress Bar */
.nav-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #0EC6CE, #0AA8AF);
    width: 0%;
    transition: width 0.1s linear;
}

/* ==========================================
   HERO ENHANCED
   ========================================== */
.hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
    overflow: hidden;
    background: #000000;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: rgba(14, 198, 206, 0.15);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 50px;
    color: #0EC6CE;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(14, 198, 206, 0.2);
}

.hero-badge svg {
    flex-shrink: 0;
}

/* Headline */
.hero-headline {
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-highlight {
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #0EC6CE;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-emphasis {
    color: #ffffff;
    font-weight: 600;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    color: #000000;
    box-shadow: 0 4px 30px rgba(14, 198, 206, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(14, 198, 206, 0.6);
}

.hero-btn-primary svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 198, 206, 0.4);
    color: #0EC6CE;
}

.hero-btn-ghost svg {
    fill: #0EC6CE;
}

/* Stats Section */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-time {
    background: rgba(14, 198, 206, 0.15);
    color: #0EC6CE;
}

.stat-icon-free {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.stat-icon-ai {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: #0EC6CE;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero-trust-item svg {
    color: #0EC6CE;
    flex-shrink: 0;
}

/* Background Elements */
.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(14, 198, 206, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 198, 206, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 1;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-glow-1 {
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 198, 206, 0.3), transparent 70%);
}

.hero-bg-glow-2 {
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
}

/* ==========================================
   BUTTONS V2 (Reusable)
   ========================================== */
.btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-v2-primary {
    background: #0EC6CE;
    color: #000000;
}

.btn-v2-primary:hover {
    background: #0AA8AF;
    transform: translateY(-2px);
}

.btn-v2-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-v2-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.btn-v2-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ==========================================
   PROBLEM/SOLUTION SECTION
   ========================================== */
.problem-solution-section {
    padding: 8rem 2rem;
    background: #0a0a0a;
}

.problem-solution-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

/* Problem Card */
.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.problem-icon svg {
    color: #ef4444;
}

/* Solution Card */
.solution-card {
    background: rgba(14, 198, 206, 0.05);
    border: 1px solid rgba(14, 198, 206, 0.2);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.solution-icon svg {
    color: #0EC6CE;
}

/* Card Labels */
.card-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.card-label-solution {
    color: #0EC6CE;
}

/* Card Headlines */
.card-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

/* Card Lists */
.card-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.item-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ef4444;
}

.item-icon-solution {
    background: rgba(14, 198, 206, 0.15);
    color: #0EC6CE;
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.375rem;
}

.item-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* VS Divider */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 8rem;
}

.vs-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.vs-text {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   PROCESS SECTION (Timeline)
   ========================================== */
.process-section {
    padding: 8rem 2rem;
    background: #000000;
}

.process-header {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Timeline */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Connecting Line */
.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        rgba(14, 198, 206, 0.1),
        rgba(14, 198, 206, 0.3) 50%,
        rgba(14, 198, 206, 0.6));
}

/* Timeline Items */
.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 4rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/* Numbered Dots */
.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(14, 198, 206, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.dot-number {
    font-size: 1.125rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
}

.timeline-dot-final {
    background: rgba(14, 198, 206, 0.15);
    border-color: rgba(14, 198, 206, 0.6);
}

.timeline-dot-final .dot-number {
    color: #0EC6CE;
}

/* Timeline Cards */
.timeline-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    gap: 1.5rem;
}

.timeline-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(14, 198, 206, 0.3);
    transform: translateX(4px);
}

.timeline-card-final {
    background: rgba(14, 198, 206, 0.05);
    border-color: rgba(14, 198, 206, 0.3);
}

.timeline-card-final:hover {
    border-color: rgba(14, 198, 206, 0.5);
}

/* Timeline Icons */
.timeline-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.timeline-icon-submit {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
}

.timeline-icon-build {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.timeline-icon-design {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.timeline-icon-test {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.timeline-icon-launch {
    background: rgba(14, 198, 206, 0.15);
    color: #0EC6CE;
}

/* Timeline Content */
.timeline-content {
    flex: 1;
}

.timeline-day {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.timeline-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews-section {
    padding: 8rem 2rem;
    background: #000000;
}

.reviews-header {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.reviews-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-weight: 500;
}

/* Reviews Grid */
.reviews-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Review Cards */
.review-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(14, 198, 206, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Stars */
.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-stars svg {
    color: #0EC6CE;
}

/* Review Text */
.review-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

/* Author Section */
.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Avatar */
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.author-avatar-1 {
    background: linear-gradient(135deg, rgba(14, 198, 206, 0.3), rgba(14, 198, 206, 0.1));
    color: #0EC6CE;
    border: 2px solid rgba(14, 198, 206, 0.5);
}

.author-avatar-2 {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(168, 85, 247, 0.1));
    color: #a855f7;
    border: 2px solid rgba(168, 85, 247, 0.5);
}

.author-avatar-3 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(236, 72, 153, 0.1));
    color: #ec4899;
    border: 2px solid rgba(236, 72, 153, 0.5);
}

.author-avatar-4 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.5);
}

.author-avatar-5 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.1));
    color: #22c55e;
    border: 2px solid rgba(34, 197, 94, 0.5);
}

.author-avatar-6 {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.1));
    color: #fbbf24;
    border: 2px solid rgba(251, 191, 36, 0.5);
}

/* Author Info */
.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Verified Badge */
.review-verified {
    width: 24px;
    height: 24px;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-verified svg {
    color: #0EC6CE;
    width: 14px;
    height: 14px;
}

/* Reviews Summary */
.reviews-summary {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    text-align: center;
}

.summary-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.summary-stars {
    display: flex;
    gap: 0.5rem;
}

.summary-stars svg {
    color: #0EC6CE;
}

.summary-score {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.summary-count {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   PRICING ENHANCED
   ========================================== */
.pricing-enhanced {
    padding: 8rem 2rem;
    background: #0a0a0a;
}

.pricing-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
    text-align: center;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-weight: 500;
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(14, 198, 206, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Featured Card */
.pricing-card-featured {
    background: rgba(14, 198, 206, 0.05);
    border-color: rgba(14, 198, 206, 0.3);
    box-shadow: 0 8px 32px rgba(14, 198, 206, 0.2);
}

.pricing-card-featured:hover {
    background: rgba(14, 198, 206, 0.08);
    border-color: rgba(14, 198, 206, 0.5);
    box-shadow: 0 20px 60px rgba(14, 198, 206, 0.3);
}

/* Badge */
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #0EC6CE, #0AA8AF);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(14, 198, 206, 0.4);
}

.pricing-badge svg {
    fill: currentColor;
    stroke: none;
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

/* Icon */
.pricing-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1);
}

.pricing-icon-free {
    background: rgba(14, 198, 206, 0.1);
    color: #0EC6CE;
}

.pricing-icon-featured {
    background: linear-gradient(135deg, rgba(14, 198, 206, 0.2), rgba(14, 198, 206, 0.05));
    color: #0EC6CE;
}

.pricing-icon-annual {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

/* Name */
.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

/* Price */
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 2rem;
    font-weight: 800;
    color: #0EC6CE;
}

.price-amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: #0EC6CE;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Savings Badge */
.pricing-savings {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: #a855f7;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Description */
.pricing-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Features List */
.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    gap: 1rem;
    padding: 1.125rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
}

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

.pricing-features svg {
    flex-shrink: 0;
    color: #0EC6CE;
    margin-top: 0.125rem;
}

.pricing-features div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing-features strong {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.pricing-features span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Pricing Buttons */
.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(14, 198, 206, 0.3);
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 198, 206, 0.5);
}

.pricing-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.pricing-btn-ghost:hover {
    background: rgba(14, 198, 206, 0.1);
    border-color: rgba(14, 198, 206, 0.3);
    color: #0EC6CE;
}

.pricing-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-btn:hover svg {
    transform: translateX(4px);
}

/* Trust Footer */
.pricing-trust {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    font-weight: 500;
}

.pricing-trust-item svg {
    color: #0EC6CE;
    flex-shrink: 0;
}

/* ==========================================
   FAQ V2
   ========================================== */
.faq-v2 {
    padding: 8rem 2rem;
    background: #000000;
}

.faq-v2-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.faq-v2-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-v2-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
}

.faq-v2-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-v2-question::-webkit-details-marker {
    display: none;
}

.faq-v2-question::after {
    content: '+';
    font-size: 2rem;
    color: #0EC6CE;
    transition: transform 0.3s;
}

.faq-v2-item[open] .faq-v2-question::after {
    transform: rotate(45deg);
}

.faq-v2-answer {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 1rem;
}

/* ==========================================
   FINAL CTA ENHANCED
   ========================================== */
.final-cta-enhanced {
    position: relative;
    padding: 10rem 2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 5rem 4rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Badge */
.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(14, 198, 206, 0.15);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    color: #0EC6CE;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.final-cta-badge svg {
    flex-shrink: 0;
}

/* Headline */
.final-cta-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.final-cta-highlight {
    color: #0EC6CE;
    background: linear-gradient(135deg, #0EC6CE, #0AA8AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Value Props */
.final-cta-props {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.final-cta-prop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    font-weight: 500;
}

.final-cta-prop svg {
    color: #0EC6CE;
    flex-shrink: 0;
}

/* CTA Button */
.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    color: #000000;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(14, 198, 206, 0.3);
    margin-bottom: 1.5rem;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 198, 206, 0.5);
}

.final-cta-btn-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-btn:hover .final-cta-btn-arrow {
    transform: translateX(4px);
}

/* Trust Indicator */
.final-cta-trust {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Background Circle */
.final-cta-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 198, 206, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* ==========================================
   FOOTER ENHANCED
   ========================================== */
.footer-enhanced {
    background: #0a0a0a;
}

/* Footer CTA Band */
.footer-cta-band {
    background: linear-gradient(135deg, rgba(14, 198, 206, 0.1), rgba(14, 198, 206, 0.05));
    border-top: 1px solid rgba(14, 198, 206, 0.2);
    border-bottom: 1px solid rgba(14, 198, 206, 0.2);
    padding: 4rem 2rem;
}

.footer-cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.footer-cta-text {
    flex: 1;
}

.footer-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.footer-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Main Footer */
.footer-main {
    padding: 5rem 2rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
}

/* Brand Column */
.footer-brand-col {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    color: #0EC6CE;
}

.footer-logo span {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Trust Badges */
.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-badge svg {
    color: #0EC6CE;
}

/* Footer Columns */
.footer-col-title {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0EC6CE;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-location {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.social-link:hover {
    background: rgba(14, 198, 206, 0.1);
    border-color: rgba(14, 198, 206, 0.3);
    color: #0EC6CE;
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .problem-solution-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vs-divider {
        flex-direction: row;
        padding-top: 0;
        padding: 2rem 0;
    }

    .vs-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    .process-timeline {
        padding-left: 0;
    }

    .timeline-line {
        left: 20px;
    }

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

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-trust {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .nav-links-wrapper {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-brand-badge {
        display: none;
    }

    .nav-cta-btn span {
        display: none;
    }

    .nav-cta-btn {
        padding: 0.75rem;
    }

    .hero-enhanced {
        padding: 7rem 1.5rem 4rem;
        min-height: auto;
    }

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

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .hero-stat {
        width: 100%;
        justify-content: center;
    }

    .hero-stat-divider {
        display: none;
    }

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

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-bg-glow-1,
    .hero-bg-glow-2 {
        width: 400px;
        height: 400px;
    }

    .problem-solution-section,
    .process-section,
    .reviews-section,
    .pricing-enhanced,
    .faq-v2,
    .final-cta-enhanced {
        padding: 4rem 1.5rem;
    }

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

    .review-card {
        padding: 2rem 1.5rem;
    }

    .reviews-summary {
        padding: 2rem 1.5rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .pricing-icon {
        width: 64px;
        height: 64px;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .final-cta-container {
        padding: 3rem 2rem;
    }

    .final-cta-headline {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 2rem;
    }

    .final-cta-props {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .final-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }

    .final-cta-bg-circle {
        width: 400px;
        height: 400px;
    }

    .problem-card,
    .solution-card {
        padding: 2rem;
    }

    .problem-icon,
    .solution-icon {
        width: 56px;
        height: 56px;
    }

    .timeline-item {
        padding-left: 64px;
    }

    .timeline-line {
        left: 16px;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        left: -4px;
    }

    .dot-number {
        font-size: 1rem;
    }

    .timeline-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .timeline-icon {
        width: 48px;
        height: 48px;
    }

    .footer-cta-band {
        padding: 3rem 1.5rem;
    }

    .footer-main {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand-col {
        grid-column: 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-copyright {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ==========================================
   PROJECT VIEW PAGE
   ========================================== */

/* Back Navigation */
.project-back-nav {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 198, 206, 0.3);
    color: #0EC6CE;
    transform: translateX(-4px);
}

.back-link svg {
    transition: transform 0.2s;
}

.back-link:hover svg {
    transform: translateX(-4px);
}

/* Project Hero */
.project-hero {
    margin-bottom: 3rem;
}

.project-hero-content {
    margin-bottom: 2rem;
}

.project-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 198, 206, 0.15);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 50px;
    color: #0EC6CE;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.project-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.hero-meta-item svg {
    color: rgba(14, 198, 206, 0.6);
}

.hero-meta-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

/* Status Banner */
.project-status-banner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-top: 2rem;
}

.status-banner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.status-pending .status-banner-icon {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.status-building .status-banner-icon {
    background: rgba(14, 198, 206, 0.15);
    color: #0EC6CE;
}

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

.status-banner-content {
    flex: 1;
}

.status-banner-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.status-banner-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.status-banner-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0EC6CE, #0AA8AF);
    border-radius: 50px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.status-banner-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.status-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s;
}

.status-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 198, 206, 0.4);
}

.status-action-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.status-action-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Content Grid */
.project-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.project-main-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Content Sections */
.content-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 12px;
    color: #0EC6CE;
}

.section-title-group h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.section-title-group p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.section-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.project-goal-text {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.tech-requirements {
    font-size: 1rem;
    line-height: 1.7;
}

/* Build Timeline */
.build-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.marker-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    z-index: 2;
}

.timeline-item.completed .marker-dot {
    background: #0EC6CE;
    border-color: rgba(14, 198, 206, 0.3);
    box-shadow: 0 0 0 4px rgba(14, 198, 206, 0.15);
}

.timeline-item.active .marker-dot {
    background: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.marker-line {
    width: 2px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
    min-height: 60px;
}

.timeline-item.completed .marker-line {
    background: rgba(14, 198, 206, 0.3);
}

.timeline-card {
    flex: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.timeline-item.completed .timeline-card {
    background: rgba(14, 198, 206, 0.05);
    border-color: rgba(14, 198, 206, 0.15);
}

.timeline-item.active .timeline-card {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.2);
}

.timeline-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
}

.timeline-day {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0EC6CE;
    margin-bottom: 0.75rem;
}

.timeline-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.timeline-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.timeline-date {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.timeline-card-final {
    border-color: rgba(14, 198, 206, 0.2);
}

.timeline-complete-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
    font-size: 0.875rem;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Sidebar */
.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
}

.sidebar-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.sidebar-card-header .sidebar-card-title {
    margin-bottom: 0;
}

.sidebar-edit-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.sidebar-edit-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 198, 206, 0.3);
    color: #0EC6CE;
}

.sidebar-edit-link svg {
    flex-shrink: 0;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s;
}

.sidebar-action:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 198, 206, 0.3);
    color: #0EC6CE;
    transform: translateX(4px);
}

.sidebar-action svg {
    flex-shrink: 0;
    color: rgba(14, 198, 206, 0.7);
}

.sidebar-action-primary {
    background: rgba(14, 198, 206, 0.15);
    border-color: rgba(14, 198, 206, 0.3);
    color: #0EC6CE;
}

.sidebar-action-primary:hover {
    background: rgba(14, 198, 206, 0.25);
}

/* Project Stats */
.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
}

.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: capitalize;
}

.status-badge.status-pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.status-badge.status-in_progress {
    background: rgba(14, 198, 206, 0.15);
    color: #0EC6CE;
}

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

/* Help Card */
.sidebar-card-help {
    background: linear-gradient(135deg, rgba(14, 198, 206, 0.1) 0%, rgba(14, 198, 206, 0.05) 100%);
    border-color: rgba(14, 198, 206, 0.2);
    text-align: center;
}

.help-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 16px;
    color: #0EC6CE;
    margin-bottom: 1rem;
}

.sidebar-card-help h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.sidebar-card-help p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.help-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(14, 198, 206, 0.2);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0EC6CE;
    transition: all 0.2s;
}

.help-button:hover {
    background: rgba(14, 198, 206, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .project-content-grid {
        grid-template-columns: 1fr;
    }

    .project-sidebar {
        position: static;
    }
}

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

    .project-status-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .status-banner-actions {
        flex-direction: column;
    }

    .status-action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   PROJECT ACTIVITY FEED PAGE
   ========================================== */

/* Header with Actions */
.project-activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-header-left h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.project-goal-brief {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.project-header-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.project-action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.2s;
}

.project-action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 198, 206, 0.3);
    transform: translateY(-2px);
}

.project-action-primary {
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    border-color: transparent;
    color: #000000;
}

.project-action-primary:hover {
    box-shadow: 0 8px 20px rgba(14, 198, 206, 0.4);
}

/* Trial Status Banner */
.trial-status-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.trial-active {
    background: rgba(14, 198, 206, 0.1);
    border: 1px solid rgba(14, 198, 206, 0.3);
}

.trial-expired {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.trial-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.trial-active .trial-icon {
    background: rgba(14, 198, 206, 0.2);
    color: #0EC6CE;
}

.trial-expired .trial-icon {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.trial-content {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
}

.trial-content strong {
    font-weight: 700;
    color: #ffffff;
}

.trial-upgrade-btn {
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.2s;
}

.trial-upgrade-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Edit Info Banner */
.edit-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border-radius: 10px;
}

.info-content {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.info-content strong {
    font-weight: 700;
    color: #ffffff;
}

/* Activity Feed Layout */
.activity-feed-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.activity-feed-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Activity Feed Header */
.activity-feed-header {
    margin-bottom: 1rem;
}

.activity-feed-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.activity-feed-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Activity Feed */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Activity Item */
.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s;
    animation: fadeInUp 0.5s ease-out;
}

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

.activity-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.activity-update {
    border-left: 3px solid #0EC6CE;
}

.activity-feedback {
    border-left: 3px solid rgba(139, 92, 246, 0.6);
}

/* Activity Avatar */
.activity-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
}

.activity-avatar-system {
    background: rgba(14, 198, 206, 0.15);
    color: #0EC6CE;
}

.activity-avatar-client {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    font-size: 0.875rem;
}

/* Activity Content */
.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.activity-author {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
}

.activity-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(14, 198, 206, 0.15);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0EC6CE;
    text-transform: uppercase;
}

.activity-badge-feedback {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.activity-time {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.activity-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.activity-body {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Empty State */
.activity-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: rgba(14, 198, 206, 0.1);
    border-radius: 24px;
    color: #0EC6CE;
    margin-bottom: 1.5rem;
}

.activity-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.activity-empty-state p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Feedback Form */
.feedback-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.feedback-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #8b5cf6;
}

.feedback-form-title h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.feedback-form-title p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.feedback-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #ffffff;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.feedback-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 198, 206, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 198, 206, 0.1);
}

.feedback-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.feedback-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.feedback-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.feedback-hint svg {
    flex-shrink: 0;
    color: #0EC6CE;
}

.feedback-submit-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s;
}

.feedback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 198, 206, 0.4);
}

.feedback-submit-btn svg {
    transition: transform 0.2s;
}

.feedback-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Activity Sidebar */
.activity-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.activity-sidebar .sidebar-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.activity-sidebar .sidebar-stats .stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 8px;
    color: #0EC6CE;
}

.stat-details {
    flex: 1;
}

.activity-sidebar .stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.activity-sidebar .stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

/* Sidebar Files List */
.sidebar-files-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-file-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.2s;
}

.sidebar-file-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 198, 206, 0.3);
    transform: translateX(4px);
}

.sidebar-file-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 6px;
    color: #0EC6CE;
}

.sidebar-file-details {
    flex: 1;
    min-width: 0;
}

.sidebar-file-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-file-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* Project Brief */
.project-brief-content {
    color: rgba(255, 255, 255, 0.8);
}

.project-brief-content h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0EC6CE;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.project-brief-content h4:first-child {
    margin-top: 0;
}

.project-brief-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Help Card */
.help-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 12px;
    color: #0EC6CE;
    margin-bottom: 1rem;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(14, 198, 206, 0.2);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0EC6CE;
    transition: all 0.2s;
}

.help-link:hover {
    background: rgba(14, 198, 206, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .activity-feed-layout {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 1024px) {
    .activity-feed-layout {
        grid-template-columns: 1fr;
    }

    .activity-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .project-activity-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .project-header-left h1 {
        font-size: 2rem;
    }

    .project-header-actions {
        width: 100%;
        flex-direction: column;
    }

    .project-action-btn {
        width: 100%;
        justify-content: center;
    }

    .activity-item {
        flex-direction: column;
    }

    .feedback-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .feedback-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   ADMIN INTERFACE
   ========================================== */

/* Admin Table */
.admin-table-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.admin-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

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

.project-title-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.unread-badge {
    padding: 0.25rem 0.625rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fbbf24;
}

.trial-days {
    color: #0EC6CE;
    font-weight: 600;
}

.paid-badge {
    padding: 0.25rem 0.625rem;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #22c55e;
}

.expired-badge {
    padding: 0.25rem 0.625rem;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ef4444;
}

.admin-action-link {
    padding: 0.5rem 1rem;
    background: rgba(14, 198, 206, 0.15);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0EC6CE;
    transition: all 0.2s;
    display: inline-block;
}

.admin-action-link:hover {
    background: rgba(14, 198, 206, 0.25);
    transform: translateX(4px);
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Admin Project Header */
.admin-project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-project-header h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.admin-client-info {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.admin-client-info strong {
    color: #0EC6CE;
    font-weight: 700;
}

.admin-project-meta {
    display: flex;
    gap: 0.75rem;
}

/* Post Update Card */
.admin-post-update-card {
    background: linear-gradient(135deg, rgba(14, 198, 206, 0.1) 0%, rgba(14, 198, 206, 0.05) 100%);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.admin-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 198, 206, 0.2);
    border-radius: 12px;
    color: #0EC6CE;
}

.admin-card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.admin-card-header p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Admin Form */
.admin-update-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-form-group label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.admin-form-group input,
.admin-form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #ffffff;
    line-height: 1.6;
    transition: all 0.2s;
}

.admin-form-group textarea {
    resize: vertical;
    font-family: 'Courier New', monospace;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(14, 198, 206, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 198, 206, 0.15);
}

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

.admin-form-actions {
    display: flex;
    gap: 1rem;
}

.admin-btn-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0EC6CE 0%, #0AA8AF 100%);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 198, 206, 0.5);
}

/* Admin Activity Section */
.admin-activity-section {
    margin-bottom: 3rem;
}

.admin-activity-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Admin Project Details */
.admin-project-details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.admin-project-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.detail-row {
    margin-bottom: 1.5rem;
}

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

.detail-row strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0EC6CE;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.detail-row p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* File Upload UI */
.file-upload-area {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.file-upload-label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 198, 206, 0.4);
}

.file-upload-label svg {
    color: rgba(255, 255, 255, 0.6);
}

.file-upload-label span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.file-upload-label small {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.file-input {
    display: none;
}

/* Activity Files Display */
.activity-files {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.file-attachment {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.2s;
    min-width: 200px;
    max-width: 300px;
}

.file-attachment:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 198, 206, 0.3);
    transform: translateY(-2px);
}

.file-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 198, 206, 0.15);
    border-radius: 8px;
    color: #0EC6CE;
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.125rem;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-table-wrapper {
        overflow-x: auto;
    }

    .admin-table {
        min-width: 800px;
    }

    .admin-project-header {
        flex-direction: column;
    }
}

/* ==========================================
   Flash Messages / Alerts
   ========================================== */
.flash-messages {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    width: 100%;
    pointer-events: none;
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-left: 4px solid;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out;
    backdrop-filter: blur(10px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Success Messages */
.flash-success .flash-message {
    border-left-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.flash-success .flash-message::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

/* Error Messages */
.flash-error .flash-message {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.flash-error .flash-message::before {
    content: '✕';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

/* Warning Messages */
.flash-warning .flash-message {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.flash-warning .flash-message::before {
    content: '⚠';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

/* Info Messages */
.flash-info .flash-message {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.flash-info .flash-message::before {
    content: 'ℹ';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

/* Message Text */
.flash-message {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .flash-messages {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .flash-message {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
}

/* Code Block Styling for Activity Feed */

/* Inline Code */
.activity-body code.inline-code {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #818cf8;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
    font-size: 0.875em;
    font-weight: 500;
}

/* Multi-line Code Blocks */
.activity-body .code-block {
    margin: 1rem 0;
    background: #1a1a2e;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.code-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.code-language {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #818cf8;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
}

.code-copy-btn {
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818cf8;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: system-ui, -apple-system, sans-serif;
}

.code-copy-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #818cf8;
}

.code-copy-btn.copied {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981;
}

.code-block pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
    background: transparent;
}

.code-block code {
    display: block;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e8e8e8;
    white-space: pre;
    word-wrap: normal;
}

/* Scrollbar styling for code blocks */
.code-block pre::-webkit-scrollbar {
    height: 8px;
}

.code-block pre::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.code-block pre::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 4px;
}

.code-block pre::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}

/* Responsive adjustments for code blocks */
@media (max-width: 768px) {
    .code-block pre {
        padding: 0.75rem;
    }

    .code-block code {
        font-size: 0.8125rem;
    }

    .code-block-header {
        padding: 0.4rem 0.75rem;
    }

    .code-language {
        font-size: 0.7rem;
    }

    .code-copy-btn {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}

/* ==========================================
   NEW FEATURE STYLES - Demo, Status, Feedback
   ========================================== */

/* Demo Project Card */
.demo-project-section {
    margin-bottom: 2rem;
}
.demo-project-card {
    background: linear-gradient(135deg, rgba(14, 198, 206, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}
.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 198, 206, 0.2);
    color: #0EC6CE;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.demo-project-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.demo-project-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}
.demo-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0EC6CE;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s;
}
.demo-view-btn:hover {
    gap: 0.75rem;
}

/* Demo Banner in Project View */
.demo-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(14, 198, 206, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.demo-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(14, 198, 206, 0.2);
    border-radius: 8px;
    color: #0EC6CE;
}
.demo-banner-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}
.demo-banner-content strong {
    color: #0EC6CE;
}

/* Admin Project Brief */
.admin-project-brief {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.brief-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.brief-header h2 {
    font-size: 1.25rem;
    color: #fff;
}
.btn-outline-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(14, 198, 206, 0.5);
    border-radius: 6px;
    color: #0EC6CE;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-outline-small:hover {
    background: rgba(14, 198, 206, 0.1);
    border-color: #0EC6CE;
}
.brief-content {
    display: grid;
    gap: 1rem;
}
.brief-section h4 {
    font-size: 0.8125rem;
    color: #0EC6CE;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.brief-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Status Select */
.status-select {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
}
.status-select:focus {
    outline: none;
    border-color: #0EC6CE;
}

/* Trial Badges */
.trial-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
}
.trial-badge.trial-active {
    background: rgba(14, 198, 206, 0.15);
    color: #0EC6CE;
}
.trial-badge.trial-expired {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}
.trial-badge.trial-pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

/* Feedback Deadline */
.feedback-deadline-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}
.feedback-deadline-info svg {
    color: #0EC6CE;
}
.unlocked-count {
    color: #fbbf24;
}
.feedback-deadline-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(14, 198, 206, 0.1);
    border: 1px solid rgba(14, 198, 206, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}
.deadline-icon {
    color: #0EC6CE;
}
.deadline-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

/* Activity Locked/Pending Badges */
.activity-badge-locked {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
}
.activity-badge-pending {
    background: rgba(251, 191, 36, 0.15) !important;
    color: #fbbf24 !important;
}
.activity-locked {
    opacity: 0.85;
    border-left-color: rgba(34, 197, 94, 0.5) !important;
}

/* Trial Pending Banner */
.trial-status-banner.trial-pending {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}
.trial-status-banner.trial-pending .trial-icon {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}
.trial-status-banner.trial-pending .trial-content strong {
    color: #fbbf24;
}
