/* E-Stats.be - Traceersysteem Stylesheet */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --primary-dark: #1e40af;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--text-color);
    line-height: 1.1;
    gap: 0.1rem;
}

.logo-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-header .suite-title {
    line-height: 1;
    font-size: 2.6rem;
}

.site-header .suite-title .suite-letter {
    font-size: 3.6rem;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-color) 100%);
}

.hero h1 {
    font-size: 3.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content {
    padding: 3rem 0;
}

.content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-dark);
}

.content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.features.tools-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.suite-title {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-color);
}

.suite-title .suite-prefix {
    color: var(--primary-dark);
    font-weight: 700;
}

.suite-title .suite-letter {
    font-family: 'Permanent Marker', cursive;
    font-size: 3.3rem;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    transform: scaleY(1.1);
    transform-origin: center;
    margin-right: 0.05rem;
}

.permanent-marker-regular {
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;
    font-style: normal;
}

.suite-title .suite-text {
    font-weight: 700;
    color: var(--text-color);
}

.suite-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.suite-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.85;
}

.feature-card p {
    margin: 0;
    font-size: 1rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 2rem 0 3rem;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 20px 45px -25px rgba(30, 64, 175, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px -25px rgba(30, 64, 175, 0.45);
}

.pricing-card--highlight {
    background: linear-gradient(150deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.2));
    border-color: rgba(37, 99, 235, 0.35);
}

.pricing-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.pricing-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    color: var(--text-light);
}

.pricing-card ul li::before {
    content: '•';
    color: var(--primary-dark);
    margin-right: 0.6rem;
}

.pricing-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.status-banner {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin: 2rem 0 1.5rem;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: #9a3412;
    box-shadow: 0 18px 30px -20px rgba(249, 115, 22, 0.35);
}

.status-banner--warning {
    background: linear-gradient(140deg, rgba(249, 115, 22, 0.16), rgba(234, 88, 12, 0.1));
}

.status-banner strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.status-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: #9a3412;
}

.status-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.18);
    flex-shrink: 0;
}

/* Steps List */
.steps {
    counter-reset: step-counter;
    list-style: none;
    margin: 2rem 0;
}

.steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    margin-bottom: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.steps strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.steps p {
    margin: 0;
    font-size: 1rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Footer */
.site-footer {
    background: linear-gradient(140deg, var(--primary-dark), var(--primary-color));
    color: rgba(255, 255, 255, 0.92);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 45%);
    opacity: 0.8;
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .features.tools-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
        width: 100%;
    }
}
