/* WPCleanr - Main Stylesheet */
:root {
    /* Verde profesional como color base */
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --primary-lighter: #34d399;
    --primary-bg: #f0fdf4;
    
    --secondary: #6b7280;
    --success: #059669;
    --danger: #dc2626;
    --warning: #f59e0b;
    --info: #0891b2;
    
    --light: #f9fafb;
    --dark: #111827;
    --white: #ffffff;
    
    /* Escala de grises neutral */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --border-radius: 10px;
    --border-radius-sm: 6px;
    
    /* Sombras sutiles y profesionales */
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    
    --transition: all 0.2s ease;
}

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

body {
    font-family: var(--font-family);
    color: var(--gray-900);
    line-height: 1.7;
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-200);
    color: var(--gray-900);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gray-600);
    color: var(--white);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    padding: 8px 0;
}

.btn-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    transform: none;
}

/* Marketing Layout */
.marketing .header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
    letter-spacing: -0.3px;
}

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

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.nav a:hover {
    color: var(--gray-900);
}

.nav a:hover::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-50) 100%);
    color: var(--gray-900);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

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

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: var(--gray-900);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 48px;
    color: var(--gray-600);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.hero-actions .btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    transform: translateY(-1px);
}

/* Features */
.features-preview {
    padding: 80px 0;
    background: var(--white);
}

.features-preview h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
    letter-spacing: -0.6px;
}

.features-preview .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    background: var(--white);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
    opacity: 0.9;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Pricing */
.pricing-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.pricing-section h1,
.features-section h1,
.how-it-works h1 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
    letter-spacing: -0.6px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    padding: 48px 40px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    background: var(--white);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.pricing-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin: 24px 0;
    color: var(--gray-900);
    line-height: 1;
}

.price span {
    font-size: 18px;
    color: var(--gray-600);
    font-weight: 400;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.features-list li:before {
    content: "✓ ";
    color: var(--primary);
    font-weight: bold;
    margin-right: 8px;
}

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

/* Breadcrumbs */
.breadcrumbs {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--gray-600);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--gray-400);
}

.breadcrumbs a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs li:last-child {
    color: var(--gray-900);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-meta {
    margin-top: 12px;
}

.footer-meta a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-meta a:hover {
    color: var(--white);
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--gray-50);
}

.testimonials h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--gray-900);
    letter-spacing: -0.6px;
}

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

.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 64px;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial cite {
    font-style: normal;
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    font-size: 16px;
    padding: 14px 32px;
}

.cta-section .btn-primary:hover {
    background: var(--gray-50);
    transform: translateY(-1px);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.step p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-item .feature-icon {
    font-size: 40px;
    flex-shrink: 0;
    opacity: 0.9;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.feature-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

/* App Layout */
.app-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1329 100%);
    color: var(--white);
    padding: 24px 0;
    box-shadow: var(--shadow-lg);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header {
    padding: 0 20px 30px;
    border-bottom: 1px solid var(--gray-700);
}

.sidebar-nav {
    padding: 20px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
    margin: 4px 12px;
    border-radius: var(--border-radius-sm);
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateX(4px);
}

.nav-item:hover::before {
    height: 60%;
}

.nav-item .badge {
    margin-left: auto;
    background: var(--primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
}

.app-main {
    flex: 1;
    background: var(--gray-100);
}

.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.topbar-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.content {
    padding: 32px;
    min-height: calc(100vh - 80px);
}

/* Cards */
.card, .detail-card, .dashboard-card, .form-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.card:hover, .detail-card:hover, .dashboard-card:hover {
    box-shadow: var(--shadow-md);
}

/* Dashboard */
.dashboard {
    max-width: 1400px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card.critical::before {
    background: var(--danger);
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-card.critical .stat-value {
    color: var(--danger);
}

.stat-label {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.table thead {
    background: var(--gray-100);
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.table tbody tr:hover {
    background: var(--gray-50);
}

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

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    background: var(--gray-200);
    color: var(--gray-700);
}

.badge-critical, .badge.critical {
    background: var(--danger);
    color: var(--white);
}

.badge-high {
    background: #fd7e14;
    color: var(--white);
}

.badge-medium {
    background: var(--warning);
    color: var(--gray-900);
}

.badge-low {
    background: var(--info);
    color: var(--white);
}

.badge-info {
    background: var(--gray-500);
    color: var(--white);
}

.badge-connected {
    background: var(--success);
    color: var(--white);
}

.badge-pending, .badge-disconnected {
    background: var(--gray-400);
    color: var(--white);
}

.badge-completed {
    background: var(--success);
    color: var(--white);
}

.badge-failed {
    background: var(--danger);
    color: var(--white);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
    transform: translateY(-1px);
}

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

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.alert-error {
    background: #fee;
    color: var(--danger);
    border: 1px solid #fcc;
}

.alert-info {
    background: #e7f3ff;
    color: var(--info);
    border: 1px solid #b3d9ff;
}

.alert-success {
    background: #d4edda;
    color: var(--success);
    border: 1px solid #c3e6cb;
}

/* Auth */
.auth {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.auth-box {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.auth-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.auth-content {
    padding: 30px;
}

.auth-form h1 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-600);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
}

/* Sites */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.site-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.site-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.site-card:hover::before {
    transform: scaleX(1);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.site-header h3 {
    font-size: 18px;
}

.site-url {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 20px;
}

.site-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}

.site-actions {
    display: flex;
    gap: 10px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-600);
}

.empty-state p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Credentials Box */
.credentials-box {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-200);
    margin-top: 20px;
}

.input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.input-group .form-control {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    font-family: monospace;
    font-size: 13px;
    background: var(--white);
}

.input-group .btn {
    white-space: nowrap;
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

/* Page Header */
.marketing .page-header {
    text-align: center;
    margin-bottom: 60px;
}

.app .page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.marketing .page-header h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
    letter-spacing: -0.6px;
}

.app .page-header h1 {
    font-size: 28px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.info-item {
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.info-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 14px;
    margin: 4px 0;
}

.help-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.help-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.help-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.contact-form-wrapper {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.contact-form {
    margin-top: 24px;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: var(--white);
}

.security-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.security-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.security-item {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.security-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.security-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.security-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.security-item p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 15px;
}

.security-standards {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--gray-200);
}

.security-standards h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.standard-item {
    text-align: center;
    padding: 24px;
}

.standard-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.standard-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 14px;
}

.security-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.security-cta h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.security-cta p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.blog-post {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
}

.blog-post:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.blog-post h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
    line-height: 1.3;
}

.post-date {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    font-weight: 500;
}

.blog-post p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
    letter-spacing: -0.6px;
}

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

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
    letter-spacing: -0.3px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question:focus {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-200);
}

.faq-footer p {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .nav {
        display: none;
    }
    
    .sidebar {
        width: 200px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-header h1 {
        font-size: 32px;
    }
    
    .faq-category-title {
        font-size: 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
}
