﻿/* VendorWolf Landing Page - Dark Theme Design */

:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --blue-primary: #2563eb;
    --blue-dark: #1e40af;
    --green: #10b981;
    --yellow: #f59e0b;
    --red: #ef4444;
    --border-color: #334155;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: var(--bg-dark) !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.brand-text {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.navbar-toggler {
    border-color: var(--border-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--orange) !important;
}

.btn-primary-cta {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg-dark);
    color: var(--text-primary);
    padding-top: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.text-orange {
    color: var(--orange);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.hero-features li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.hero-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 1.5rem;
    line-height: 1;
}

.hero-conclusion {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.hero-cta {
    margin-bottom: 1.5rem;
}

.btn-orange {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-secondary-cta {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-trust i {
    color: var(--green);
}

/* Risk Matrix Card */
.hero-visual {
    position: relative;
    z-index: 2;
}

.risk-matrix-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.risk-matrix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.risk-matrix-header h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

.risk-overall {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.risk-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.risk-value {
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.risk-value.medium {
    background: var(--yellow);
    color: #000;
}

.risk-matrix-grid {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.risk-matrix-labels .label-row {
    display: grid;
    grid-template-columns: 100px repeat(5, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.risk-matrix-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.matrix-row {
    display: grid;
    grid-template-columns: 100px repeat(5, 1fr);
    gap: 0.25rem;
}

.label-cell {
    padding: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.risk-cell {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.25rem;
    color: #000;
}

.risk-cell.very-low {
    background: #10b981;
}

.risk-cell.low {
    background: #84cc16;
}

.risk-cell.medium {
    background: var(--yellow);
}

.risk-cell.high {
    background: var(--orange);
}

.risk-cell.very-high {
    background: var(--red);
}

.risk-matrix-footer {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-label {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Section Styles */
section {
    position: relative;
    padding: 5rem 0;
    background: var(--bg-dark);
}

.problem-section,
.simple-way-section,
.features-section,
.breach-section,
.how-it-works-section,
.benefits-section {
    background: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Charts */
.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
}

.donut-chart.small {
    width: 150px;
    height: 150px;
}

.chart-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-total {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.donut-chart.small .chart-total {
    font-size: 1.5rem;
}

.chart-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.chart-info {
    text-align: left;
}

.chart-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.chart-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.completed {
    background: var(--green);
}

.status-dot.in-progress {
    background: var(--yellow);
}

.status-dot.pending {
    background: var(--text-muted);
}

.status-dot.overdue {
    background: var(--red);
}

/* Features Section */
.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--orange);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Breach Table */
.breach-table-container {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    overflow-x: auto;
}

.breach-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-primary);
}

.breach-table thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breach-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.breach-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.badge-verified {
    background: var(--green);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-link {
    color: var(--orange);
    text-decoration: none;
    padding: 0;
    border: none;
    background: none;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

/* How It Works Section */
.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    background: var(--bg-card-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    background: var(--bg-card-hover);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--orange);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .risk-matrix-grid {
        font-size: 0.7rem;
    }
    
    .label-cell,
    .risk-cell {
        padding: 0.5rem 0.25rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description,
    .hero-conclusion {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .risk-matrix-card {
        margin-top: 2rem;
    }
    
    .breach-table-container {
        overflow-x: scroll;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .step-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .matrix-row {
        grid-template-columns: 80px repeat(5, 1fr);
    }
    
    .risk-matrix-labels .label-row {
        grid-template-columns: 80px repeat(5, 1fr);
    }
}
