/**
 * What You Get Page - Updated Styles
 * File: platform/assets/css/what-you-get.css
 * 
 * Custom styling for the tenant features showcase page with actual dashboard recreation
 */

:root {
    --wyg-primary: #667eea;
    --wyg-secondary: #764ba2;
    --wyg-success: #22c55e;
    --wyg-info: #0ea5e9;
    --wyg-warning: #f59e0b;
    --wyg-danger: #ef4444;
    --wyg-purple: #9333ea;
    --wyg-dark: #1e293b;
    --wyg-light: #f8fafc;
    --wyg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ========================================
   HERO SECTION - BLACK BACKGROUND
   ======================================== */
.wyg-hero-section {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
    min-height: 60vh;
}

.wyg-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(102, 126, 234, 0.04) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.wyg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    color: #a0aec0;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.wyg-hero-badge i {
    color: var(--wyg-primary);
}

.wyg-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.wyg-gradient-text {
    background: linear-gradient(135deg, var(--wyg-primary) 0%, var(--wyg-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.wyg-hero-subtitle {
    font-size: 1.25rem;
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wyg-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wyg-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wyg-btn-primary {
    background: var(--wyg-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.wyg-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.wyg-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.wyg-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   ADMIN DASHBOARD PREVIEW
   ======================================== */
.wyg-admin-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.wyg-admin-section .wyg-section-header {
    color: white;
}

.wyg-admin-section .wyg-section-subtitle {
    color: #94a3b8;
}

.wyg-admin-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.wyg-browser-mockup {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.browser-header {
    background: #f3f4f6;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.browser-dots span:first-child { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.browser-url {
    background: white;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #6b7280;
}

.browser-content {
    background: #f9fafb;
    padding: 2rem;
}

/* Actual Dashboard Recreation Styles */
.admin-dashboard-preview {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
}

/* Status Grid */
.admin-status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: #e9ecef;
    color: #6c757d;
}

.status-icon.plan {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.status-icon.active {
    background: #d4edda;
    color: #28a745;
}

.status-icon.signed {
    background: #cff4fc;
    color: #0dcaf0;
}

.status-content label {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.status-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

/* SMO Section */
.admin-smo-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.admin-smo-section h5 {
    font-size: 1rem;
    color: #212529;
    margin-bottom: 1rem;
}

.admin-smo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.smo-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.smo-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
    color: white;
}

.smo-icon.sold {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

.smo-icon.managed {
    background: linear-gradient(135deg, #198754, #146c43);
}

.smo-icon.operated {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.smo-card h6 {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.smo-card p {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
}

.smo-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.smo-call:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Customer Management Section */
.admin-customer-section {
    margin-bottom: 2rem;
}

.admin-customer-section h5 {
    font-size: 1rem;
    color: #212529;
    margin-bottom: 1rem;
}

.customer-tabs-preview {
    display: flex;
    gap: 0.5rem;
}

.tab-preview {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
    cursor: pointer;
}

.tab-preview.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* CLIPSE Section */
.admin-clipse-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.admin-clipse-section h5 {
    font-size: 1rem;
    color: #212529;
    margin-bottom: 1rem;
}

.clipse-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.clipse-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s;
}

.clipse-item.configured {
    border-color: #28a745;
    background: #f0f9ff;
}

.clipse-item i {
    font-size: 1.5rem;
    color: #6c757d;
    display: block;
    margin-bottom: 0.5rem;
}

.clipse-item.configured i {
    color: #28a745;
}

.clipse-item span {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.clipse-item small {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
}

/* Admin Features List */
.wyg-admin-features h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wyg-dark);
    margin-bottom: 1.5rem;
}

.admin-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.admin-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-feature-item i {
    color: var(--wyg-success);
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Features Section */
.wyg-features-section {
    padding: 5rem 0;
    background: white;
}

.wyg-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wyg-section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--wyg-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.wyg-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--wyg-dark);
    margin-bottom: 1rem;
}

.wyg-section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.wyg-category-block {
    margin-bottom: 4rem;
}

.wyg-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.wyg-category-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.bg-primary { background: var(--wyg-primary); }
.bg-success { background: var(--wyg-success); }
.bg-warning { background: var(--wyg-warning); }
.bg-info { background: var(--wyg-info); }
.bg-danger { background: var(--wyg-danger); }
.bg-purple { background: var(--wyg-purple); }

.wyg-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wyg-dark);
    margin: 0;
}

.wyg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.wyg-feature-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.wyg-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--wyg-primary);
    background: white;
}

.wyg-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--wyg-gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.wyg-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--wyg-dark);
    margin-bottom: 0.5rem;
}

.wyg-feature-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Special Tools Section */
.wyg-special-tools {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.wyg-special-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wyg-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wyg-special-title i {
    color: var(--wyg-warning);
}

.wyg-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wyg-tool-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.wyg-tool-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wyg-tool-card i {
    font-size: 1.5rem;
    color: var(--wyg-info);
    flex-shrink: 0;
}

.wyg-tool-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wyg-dark);
    margin-bottom: 0.25rem;
}

.wyg-tool-card p {
    font-size: 0.813rem;
    color: #64748b;
    margin: 0;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.wyg-comparison-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.wyg-comparison-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.comparison-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.buy-column {
    border: 2px solid var(--wyg-primary);
    transform: scale(1.05);
}

.column-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--wyg-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.column-header {
    padding: 2rem;
    text-align: center;
    background: #f9fafb;
}

.buy-column .column-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.column-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wyg-dark);
    margin-bottom: 0.5rem;
}

.column-subtitle {
    color: #64748b;
    font-size: 0.875rem;
}

.column-content {
    padding: 2rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.comparison-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.positive i { color: var(--wyg-success); }
.negative i { color: var(--wyg-danger); }
.neutral i { color: #6b7280; }

.comparison-item span {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}

/* ========================================
   CTA SECTION
   ======================================== */
.wyg-cta-section {
    padding: 5rem 0;
    background: white;
}

.wyg-cta-card {
    background: var(--wyg-gradient);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.cta-features i {
    color: #ffd700;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .wyg-comparison-table {
        grid-template-columns: 1fr;
    }
    
    .buy-column {
        transform: none;
    }
    
    .admin-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .wyg-hero-title {
        font-size: 2.5rem;
    }
    
    .wyg-features-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .admin-smo-grid {
        grid-template-columns: 1fr;
    }
    
    .clipse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .admin-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wyg-hero-title {
        font-size: 2rem;
    }
    
    .wyg-section-title {
        font-size: 1.75rem;
    }
    
    .admin-status-grid {
        grid-template-columns: 1fr;
    }
    
    .customer-tabs-preview {
        flex-direction: column;
    }
    
    .clipse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .wyg-cta-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .wyg-features-grid {
        grid-template-columns: 1fr;
    }
    
    .wyg-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    .browser-content {
        padding: 1rem;
    }
    
    .admin-dashboard-preview {
        padding: 0.75rem;
    }
}


