/* Seenith - Custom Styles for Modern, High-Converting Design */

/* Modern AI-Focused Hero Section */
.hero-section-modern {
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* AI Particles Background */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 200, 255, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.ai-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* AI Status Badge */
.ai-status-badge .bg-success {
    background: rgba(34, 197, 94, 0.15) !important;
    border-color: #22c55e !important;
    backdrop-filter: blur(10px);
}

.ai-status-badge .text-success {
    color: #16a34a !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ai-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
}

@keyframes pulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
        background: #22c55e;
    }
    70% { 
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
        background: #16a34a;
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
        background: #22c55e;
    }
}

/* Animated Text Gradient */
.text-gradient-animated {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Modern Pricing Highlight */
.pricing-highlight-modern {
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.pricing-highlight-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Hero Styles */
.hero-subtitle {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.4rem !important;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Value Proposition Pills */
.hero-value-props {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-prop-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.value-prop-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.value-prop-pill:nth-child(1) { animation-delay: 0.1s; }
.value-prop-pill:nth-child(2) { animation-delay: 0.2s; }
.value-prop-pill:nth-child(3) { animation-delay: 0.3s; }

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

/* Enhanced Hero CTA Section */
.hero-cta-section {
    margin: 2rem 0;
}

.cta-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    animation: pulseGlow 3s ease-in-out infinite;
}

.cta-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.cta-icon i {
    color: white;
    font-size: 1.2rem;
}

.cta-content {
    flex: 1;
    margin-right: 20px;
}

.cta-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 4px;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.cta-button {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffcd39, #ffb300);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.hero-welcome-section .welcome-badge {
    background: rgba(25, 135, 84, 0.15);
    border: 1px solid rgba(25, 135, 84, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
    color: white;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 0 40px rgba(102, 126, 234, 0.1);
    }
}

/* Hero Stats Cards */
.stat-card {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Input Group */
.modern-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.input-wrapper input {
    color: #333 !important;
}

.input-wrapper input::placeholder {
    color: #666 !important;
}

.input-wrapper:focus-within {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 193, 7, 0.5);
    transform: translateY(-2px);
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.modern-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 20px 16px 50px;
    font-size: 1.1rem;
    outline: none;
    color: #333 !important;
}

.modern-input::placeholder {
    color: #adb5bd;
}

.btn-ai-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 16px 30px;
    border-radius: 46px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-ai-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.btn-ai-primary:active {
    transform: translateY(0);
}

/* AI Visualization */
.ai-visualization-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-brain-viz {
    position: relative;
    width: 300px;
    height: 300px;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: brainPulse 3s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.ai-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 150px;
    height: 150px;
    animation: orbit 10s linear infinite;
}

.orbit-2 {
    width: 200px;
    height: 200px;
    animation: orbit 15s linear infinite reverse;
}

.orbit-3 {
    width: 250px;
    height: 250px;
    animation: orbit 20s linear infinite;
}

.orbit-4 {
    width: 300px;
    height: 300px;
    animation: orbit 25s linear infinite reverse;
}

@keyframes orbit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.ai-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    top: -20px;
    left: -20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-node:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.2);
}

.ai-node.chatgpt { color: #22c55e; }
.ai-node.claude { color: #3b82f6; }
.ai-node.perplexity { color: #f59e0b; }
.ai-node.gemini { color: #ef4444; }

/* Data Streams */
.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: dataFlow 2s ease-in-out infinite;
}

.stream-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.stream-2 {
    top: 30%;
    right: 15%;
    animation-delay: 0.7s;
}

.stream-3 {
    bottom: 20%;
    left: 60%;
    animation-delay: 1.4s;
}

@keyframes dataFlow {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* Analysis Preview */
.analysis-preview {
    position: absolute;
    bottom: -50px;
    right: -20px;
    width: 280px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: previewFloat 4s ease-in-out infinite;
    color: #000 !important;
}

.preview-card * {
    color: #000 !important;
}

.preview-card .text-muted {
    color: #666 !important;
}

.preview-card .score-value {
    color: #000 !important;
}

.preview-card small.text-muted {
    color: #555 !important;
}

.preview-card .fw-bold {
    color: #1f2937 !important;
    font-weight: 700;
}

.preview-card .text-muted {
    color: #6b7280 !important;
    font-weight: 500;
}

.preview-card div.fw-bold {
    color: #000 !important;
    font-weight: 700;
}

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

.score-ring {
    width: 50px;
    height: 50px;
    background: conic-gradient(#22c55e 0deg 259deg, #e5e7eb 259deg 360deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.score-ring::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
}

.score-value {
    position: relative;
    z-index: 1;
    font-weight: bold;
    color: #1f2937 !important;
    font-size: 14px;
}

.progress-indicators {
    margin-top: 15px;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    color: #000 !important;
    font-weight: 500;
    font-size: 12px;
    color: #000 !important;
    font-weight: 500;
}

.progress-item span {
    color: #374151 !important;
    font-weight: 600;
}

.progress-bar-mini {
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.progress-bar-mini.bg-danger {
    background: linear-gradient(90deg, #dc3545, #c82333) !important;
    box-shadow: 0 1px 3px rgba(220, 53, 69, 0.3);
}

.progress-bar-mini.bg-warning {
    background: linear-gradient(90deg, #ffc107, #e0a800) !important;
    box-shadow: 0 1px 3px rgba(255, 193, 7, 0.3);
}

.progress-bar-mini.bg-success {
    background: linear-gradient(90deg, #198754, #157347) !important;
    box-shadow: 0 1px 3px rgba(25, 135, 84, 0.3);
}

/* AI Importance Section Styling */
.ai-importance-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.ai-importance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.importance-badge {
    animation: badgePulse 3s ease-in-out infinite;
}

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

/* Statistics Highlights */
.stat-highlight {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-highlight:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number-lg {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    font-weight: 500;
}

/* AI Demo Container */
.ai-demo-container {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-demo-container h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ai-response-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.ai-response-card.bad-example {
    border-left: 4px solid #dc3545;
}

.ai-response-card.good-example {
    border-left: 4px solid #198754;
}

.ai-response-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.ai-response-header strong {
    color: #333;
    font-weight: 600;
}

.ai-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
}

.query-text {
    font-size: 0.9rem;
    color: #495057;
    font-style: italic;
    font-weight: 500;
}

.response-text {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #333;
}

.highlight-missing {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
}

.highlight-featured {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
}

.response-outcome {
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
}

.response-outcome.bad {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.response-outcome.good {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

/* Impact Cards */
.impact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.impact-card h4 {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.negative-impact {
    border-left: 4px solid #dc3545;
}

.positive-impact {
    border-left: 4px solid #198754;
}

.impact-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.impact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.negative-impact .impact-icon {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.positive-impact .impact-icon {
    background: rgba(25, 135, 84, 0.2);
    color: #198754;
}

.impact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.impact-stat {
    font-size: 2rem;
    font-weight: bold;
    margin-right: 1rem;
    min-width: 80px;
}

.negative-impact .impact-stat {
    color: #dc3545;
}

.positive-impact .impact-stat {
    color: #198754;
}

.impact-desc {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-weight: 500;
    font-size: 0.95rem;
}

.impact-warning, .impact-success {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 1rem;
}

.impact-warning {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.impact-success {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

/* Trust Section */
.trust-section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-section h4 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.ai-platform-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ai-platform-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.platform-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.platform-info strong {
    display: block;
    color: #fff;
    margin-bottom: 0.25rem;
}

.platform-stat {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.total-reach {
    color: #ffc107;
    font-size: 1.2rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* AI Brain Visualization */
.ai-brain-visualization {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.platform-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 0.5rem 0.8rem;
    margin: 0.25rem;
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.platform-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Suggestion Card Collapse/Expand Functionality */
.suggestion-content.collapsed {
    display: none !important;
}

.suggestion-content.show {
    display: block !important;
}

.btn-expand {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
}

.btn-expand:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-expand .expand-icon {
    transition: transform 0.3s ease;
}

.btn-expand[aria-expanded="true"] .expand-icon {
    transform: rotate(180deg);
}

.btn-expand[aria-expanded="true"] .expand-text::before {
    content: "Hide Details";
}

.btn-expand[aria-expanded="false"] .expand-text::before {
    content: "Show Details";
}

.btn-expand .expand-text {
    font-size: 0;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .stat-number-lg {
        font-size: 2rem;
    }
    
    .ai-demo-container {
        padding: 1rem;
    }
    
    .ai-response-card {
        margin-bottom: 1rem;
    }
    
    .impact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .impact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .impact-stat {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .ai-platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Old hero section backup */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Trust Icons Hover Effects */
.trust-icon {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.trust-icon:hover {
    transform: translateY(-5px);
}

/* Input Group Focus States */
.input-group:focus-within {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* CTA Button Animations */
.btn-warning {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Progress Bar Animations */
.progress-bar {
    transition: width 0.8s ease-in-out;
}

/* Score Circle Animation */
.score-circle {
    transition: all 0.5s ease;
}

/* Recommendation Cards Enhanced Styling */
.recommendation-card {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.recommendation-card.priority-high {
    border-left-color: #dc3545;
}

.recommendation-card.priority-medium {
    border-left-color: #ffc107;
}

.recommendation-card.priority-low {
    border-left-color: #198754;
}

/* Loading Spinner for Form Submission */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .input-group-lg {
        flex-direction: column;
    }
    
    .input-group-lg .btn {
        border-radius: 0.375rem !important;
        margin-top: 0.5rem;
    }
}

/* Results Page Enhancements */
.results-container {
    padding-top: 2rem;
}

.score-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.score-number {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.score-grade {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Enhanced Expandable Cards */
.collapse {
    transition: all 0.3s ease;
}

.collapse.show {
    animation: slideDown 0.3s ease;
}

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

/* Code Block Styling */
pre code {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Navigation Enhancements */
.navbar-brand {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #ffc107 !important;
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Accessibility Improvements */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Print Styles */
@media print {
    .hero-section,
    .navbar,
    .btn,
    .footer {
        display: none !important;
    }
    
    .results-container {
        padding-top: 0;
    }
}

/* 🔐 Authentication Section Styles */
.auth-section-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.auth-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Auth Form Container */
.auth-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.auth-form-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
    position: relative;
    color: #333;
    transition: all 0.3s ease;
}

.auth-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.auth-form-card input {
    color: #333 !important;
}

.auth-form-card input::placeholder {
    color: #666 !important;
}

.auth-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Modern Form Styles */
.modern-form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
    transition: color 0.3s ease;
}

.modern-form-input {
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333 !important;
}

.modern-form-input::placeholder {
    color: #999;
    opacity: 1;
}

.modern-form-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.modern-form-input:focus ~ .input-icon,
.modern-form-group.focused .input-icon {
    color: #667eea;
}

.modern-form-label {
    position: absolute;
    left: 45px;
    top: 0;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 2;
    background: white;
    padding: 0 8px;
    opacity: 1;
}

/* AI Primary Button */
.btn-ai-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-ai-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-ai-primary.btn-loading {
    background: linear-gradient(135deg, #9ca3f0 0%, #a085c9 100%);
    transform: none;
    cursor: not-allowed;
}

.btn-loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Auth Links */
.auth-links {
    margin-top: 2rem;
}

.auth-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.auth-back-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.auth-back-link:hover {
    color: #495057;
}

/* Auth Benefits List */
.auth-benefits {
    list-style: none;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.benefit-text strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-text div {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .auth-form-card {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .auth-section-modern .display-3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .modern-form-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .auth-form-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
}

/* 📊 Dashboard Section Styles */
.dashboard-section-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
}

/* Quick Analysis Section */
.quick-analysis-section {
    margin-bottom: 3rem;
}

.quick-analysis-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    height: 100%;
    color: #fff;
}

.quick-analysis-card h3 {
    color: #fff !important;
    font-weight: 700;
}

.quick-analysis-card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.analysis-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Enhanced Modern Input Group */
.modern-input-group-enhanced {
    margin-bottom: 1rem;
}

.input-wrapper-enhanced {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 25px;
    padding: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.input-wrapper-enhanced:focus-within {
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.url-prefix {
    background: linear-gradient(135deg, #e9ecef, #ced4da);
    color: #212529;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 8px;
    white-space: nowrap;
    border: 1px solid #adb5bd;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.url-prefix:hover {
    background: linear-gradient(135deg, #ced4da, #adb5bd);
    transform: scale(1.02);
}

.url-prefix:active {
    transform: scale(0.98);
}

.modern-input-enhanced {
    flex: 1;
    border: none !important;
    background: #ffffff !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-text-fill-color: #000000 !important;
}

.modern-input-enhanced::placeholder {
    color: #555555 !important;
    font-weight: 600;
    -webkit-text-fill-color: #555555 !important;
}

.modern-input-enhanced:focus {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

.btn-ai-primary-enhanced {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 20px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 8px;
}

.btn-ai-primary-enhanced:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.url-help-text {
    margin-top: 0.75rem;
    text-align: center;
}

.url-help-text small {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Legacy input styles for compatibility */
.modern-input-group .form-control {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.modern-input-group .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: #fff;
}

.modern-input-group .form-control::placeholder {
    color: #6c757d;
}

.modern-input-group .input-group-text {
    background: transparent;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 15px 0 0 15px;
    padding: 15px 15px;
}

.analysis-preview-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Statistics Dashboard */
.stats-dashboard {
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.18);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}: 1;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Recent Analyses Section */
.recent-analyses-section h2 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.recent-analyses-section .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.analyses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.analysis-domain {
    flex: 1;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.score-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.score-circle.score-success {
    background: linear-gradient(135deg, #198754, #157347);
}

.score-circle.score-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.score-circle.score-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.analysis-details {
    margin-bottom: 1rem;
}

.detail-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.analysis-metrics {
    margin-bottom: 1rem;
}

.metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.metric-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    min-width: 60px;
}

.metric-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 0.75rem;
    overflow: hidden;
}

.metric-progress {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.metric-value {
    font-weight: 600;
    color: #ffffff;
    min-width: 40px;
    text-align: right;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.analysis-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

/* Grade Badges for Analysis Cards */
.grade-a {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.grade-b {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.grade-c {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.grade-d {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: white !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.grade-f {
    background: linear-gradient(135deg, #991b1b, #7f1d1d) !important;
    color: white !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.empty-state-icon {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.empty-state-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.empty-state-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Dashboard */
@media (max-width: 991.98px) {
    .dashboard-header h1 {
        font-size: 2.5rem;
    }
    
    .quick-analysis-card,
    .analysis-preview-card {
        margin-bottom: 1.5rem;
    }
    
    .analyses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .quick-analysis-card {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .stat-icon {
        margin: 0 auto 1rem auto;
    }
    
    .analysis-card {
        padding: 1rem;
    }
}

/* 📊 Results Page Modern Styling */
.results-header {
    margin-bottom: 2rem;
}

.action-buttons .btn {
    border-radius: 15px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Modern Score Card */
.score-card-modern {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.score-ring-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #22c55e 0%, #22c55e 72%, rgba(255,255,255,0.2) 72%, rgba(255,255,255,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.score-ring-large::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
}

.score-number {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    line-height: 1;
}

.score-max {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: #666;
    margin-top: -5px;
}

/* Score Breakdown Modern */
.score-breakdown-modern {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.metric-card-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.metric-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.metric-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
}

.progress-modern {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar-modern {
    height: 100%;
    border-radius: 5px;
    transition: width 0.8s ease;
    background: linear-gradient(45deg, currentColor, currentColor);
}

.progress-bar-modern.bg-success {
    background: linear-gradient(45deg, #22c55e, #16a34a) !important;
}

.progress-bar-modern.bg-warning {
    background: linear-gradient(45deg, #f59e0b, #d97706) !important;
}

.progress-bar-modern.bg-danger {
    background: linear-gradient(45deg, #ef4444, #dc2626) !important;
}

/* Compact Performance Dashboard */
.performance-dashboard-compact {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.score-metrics-row {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.main-score-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.score-circle-compact {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.score-number-compact {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.score-label-compact {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

.score-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.grade-compact {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    text-align: center;
}

.grade-compact.grade-a {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.grade-compact.grade-b {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.grade-compact.grade-c {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.grade-compact.grade-d,
.grade-compact.grade-f {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.status-compact {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.status-compact.excellent {
    color: #22c55e;
}

.status-compact.good {
    color: #3b82f6;
}

.status-compact.needs-work {
    color: #ef4444;
}

.metrics-cards {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.metric-card-compact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.metric-card-compact:hover {
    transform: translateY(-2px);
}

.metric-icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.metric-icon-compact.market-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.metric-icon-compact.growth-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.metric-icon-compact.traffic-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.metric-content-compact {
    display: flex;
    flex-direction: column;
}

.metric-value-compact {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.metric-label-compact {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.breakdown-compact {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakdown-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.breakdown-header-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.breakdown-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.breakdown-icon.content-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.breakdown-icon.technical-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.breakdown-icon.business-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.breakdown-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breakdown-name {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.breakdown-score {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.breakdown-progress {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 0 0 120px;
}

.progress-compact {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    flex: 1;
}

.progress-fill-compact {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}

.progress-fill-compact.content-progress {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.progress-fill-compact.technical-progress {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.progress-fill-compact.business-progress {
    background: linear-gradient(90deg, #10b981, #059669);
}

.progress-percent {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    min-width: 35px;
    text-align: right;
}

.breakdown-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-compact {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

.detail-compact i {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .score-metrics-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .metrics-cards {
        gap: 0.8rem;
    }
    
    .breakdown-header-compact {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .breakdown-progress {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 767.98px) {
    .metrics-cards {
        flex-direction: column;
    }
    
    .breakdown-details {
        gap: 0.5rem;
    }
    
    .performance-dashboard-compact {
        padding: 1.5rem;
    }
}

/* Suggestions Section Modern */
.suggestions-section-modern {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Update existing card styles for results page */
.suggestions-content .card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.suggestions-content .card-title {
    color: #fff !important;
    font-weight: 600;
}

.suggestions-content .card-text {
    color: rgba(255, 255, 255, 0.9);
}

.suggestions-content .alert {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: #fff;
}

.suggestions-content .alert-warning {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
    color: #fcd34d;
}

.suggestions-content .alert-info {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #93c5fd;
}

/* Modern Badge Styles */
.badge.border-primary {
    background: rgba(102, 126, 234, 0.2) !important;
    border: 1px solid #667eea !important;
    color: #a5b4fc !important;
}

.badge.border-warning {
    background: rgba(245, 158, 11, 0.2) !important;
    border: 1px solid #f59e0b !important;
    color: #fcd34d !important;
}

.badge.border-danger {
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid #ef4444 !important;
    color: #fca5a5 !important;
}

/* Responsive adjustments for results */
@media (max-width: 991.98px) {
    .score-card-modern {
        padding: 2rem;
        text-align: center;
    }
    
    .score-ring-large {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }
    
    .score-ring-large::before {
        width: 90px;
        height: 90px;
    }
    
    .score-number {
        font-size: 2rem;
    }
    
    .action-buttons {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .score-breakdown-modern,
    .suggestions-section-modern {
        padding: 1.5rem;
    }
    
    .metric-card-modern {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

/* Call to Action Section */
.cta-section-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* 🍔 Modern Hamburger Navigation */
.modern-navbar {
    background: rgba(23, 25, 35, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all 0.3s ease;
}

.modern-navbar.scrolled {
    background: rgba(23, 25, 35, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* Brand Styling */
.navbar-brand {
    font-size: 1.5rem;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.brand-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1;
}

/* Custom Hamburger Toggle */
.hamburger-toggle {
    border: none;
    background: none;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-toggle:focus {
    box-shadow: none;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    margin: 4px auto;
    transition: all 0.3s ease;
}

/* Hamburger Animation States */
.hamburger-toggle:not(.collapsed) .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle:not(.collapsed) .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle:not(.collapsed) .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Navigation Links */
.modern-nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 12px 20px !important;
    border-radius: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    transition: left 0.3s ease;
    z-index: -1;
}

.modern-nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.modern-nav-link:hover::before {
    left: 0;
}

/* Special CTA Navigation Link */
.cta-nav-link {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: #fff !important;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8, #6a4190) !important;
}

/* Logout Link Special Styling */
.logout-link {
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgba(239, 68, 68, 0.9) !important;
}

.logout-link:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    border-color: rgba(239, 68, 68, 0.5);
}

/* AI Status Mini Indicator */
.ai-status-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.ai-pulse-mini {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Mobile Navigation Enhancements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(23, 25, 35, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        margin-top: 1rem;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .modern-nav-link {
        margin: 4px 0;
        text-align: center;
        border-radius: 15px;
    }
    
    .navbar-nav {
        gap: 8px;
    }
    
    .cta-nav-link {
        margin-top: 8px;
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
    }
}

/* Smooth scroll behavior for navigation */
html {
    scroll-behavior: smooth;
}

/* Navigation active states */
.modern-nav-link.active {
    background: rgba(102, 126, 234, 0.2);
    color: #fff !important;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

/* 👤 Profile Page Modern Styling */
.profile-header {
    margin-bottom: 2rem;
}

.profile-card-modern {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Information Section */
.info-section-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.info-section-modern .section-header h3,
.stats-section-modern .section-header h3,
.profile-actions h3 {
    color: #fff !important;
    font-weight: 700;
}

.info-section-modern .section-header p,
.stats-section-modern .section-header p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Profile Page Text Color Fixes */
.profile-card-modern * {
    color: #fff !important;
}

.profile-card-modern .info-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

.profile-card-modern .info-value {
    color: #fff !important;
}

.profile-card-modern .section-header p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.profile-card-modern .stat-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* 📊 Dashboard Font Color Override for Better Contrast */
.hero-section-modern .stat-card .stat-number,
.hero-section-modern .stat-card .stat-label,
.hero-section-modern .quick-analysis-card h3,
.hero-section-modern .quick-analysis-card .text-muted,
.hero-section-modern .analysis-card .analysis-domain,
.hero-section-modern .analysis-card .detail-item,
.hero-section-modern .recent-analyses-section h2,
.hero-section-modern .recent-analyses-section .text-muted,
.hero-section-modern * {
    color: #fff !important;
}

.hero-section-modern .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-section-modern .quick-analysis-card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.info-items {
    space-y: 1rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.12);
}

.info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    word-break: break-word;
}

/* Statistics Section */
.stats-section-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-card-modern.primary {
    border-left: 4px solid #667eea;
}

.stat-card-modern.success {
    border-left: 4px solid #22c55e;
}

.stat-card-modern.info {
    border-left: 4px solid #3b82f6;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.stat-card-modern.primary .stat-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.stat-card-modern.success .stat-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.stat-card-modern.info .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* Profile Actions */
.profile-actions {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 2rem;
}

/* Custom Color Classes for Icons */
.text-indigo {
    color: #6366f1 !important;
}

.text-purple {
    color: #8b5cf6 !important;
}

/* Responsive Profile Design */
@media (max-width: 991.98px) {
    .profile-card-modern {
        padding: 2rem;
    }
    
    .info-section-modern,
    .stats-section-modern {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card-modern {
        padding: 1.25rem;
        text-align: center;
        flex-direction: column;
    }
    
    .stat-icon {
        margin: 0 auto 1rem auto;
    }
}

@media (max-width: 575.98px) {
    .profile-card-modern {
        padding: 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .profile-actions .row {
        gap: 0.5rem;
    }
    
    .profile-actions .col-md-6 {
        margin-bottom: 0.5rem;
    }
}

/* Brand Content Styling for Tagline */
.brand-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-text {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: -2px;
    line-height: 1;
}

/* Brand Highlight Styling */
.brand-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Auth Brand Logo */
.auth-brand-logo {
    display: flex;
    justify-content: center;
}

.auth-brand-logo .brand-icon {
    margin-right: 0;
}

/* Seenith Branded Footer */
.seenith-footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.seenith-footer .brand-tagline {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.6rem;
    margin-top: -1px;
}

/* FAQ Implementation Section Styles */
.faq-implementation-section {
    margin-top: 1rem;
}

.faq-guide {
    background: rgba(34, 139, 34, 0.15);
    border: 1px solid rgba(34, 139, 34, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
}

.faq-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.faq-copy-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.faq-copy-buttons .copy-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    min-width: 120px;
}

.faq-copy-buttons .copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.faq-generated-content {
    margin-top: 1rem;
}