/* --- Global Styles & Variables --- */
:root {
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --background-color: #0a0a0a;
    --surface-color: #1a1a1a;
    --text-color: #f0f2f5;
    --text-muted: #adb5bd;
    --border-color: #343a40;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'Source Code Pro', monospace;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
.text-center { text-align: center; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.btn-primary { background-color: var(--primary-color); color: #fff; }
.btn-primary:hover { background-color: var(--primary-hover); color: #fff; }
.btn-secondary { background-color: transparent; color: var(--text-color); border-color: var(--border-color); }
.btn-secondary:hover { background-color: var(--surface-color); border-color: var(--text-muted); }

/* --- Header --- */
.main-header { padding: 1.5rem 0; border-bottom: 1px solid var(--border-color); }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--text-color); text-decoration: none; }
.main-nav a { margin: 0 1rem; color: var(--text-muted); font-weight: 600; text-decoration: none; }
.main-nav a:hover { color: var(--text-color); }

/* --- Hero Section --- */
.hero { padding: 6rem 0; }
.hero h1 { max-width: 800px; margin: 0 auto 1.5rem; }
.hero .subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; }

/* --- Suite Section --- */
.suite-section { padding: 5rem 0; }
.suite-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.tool-card { background-color: var(--surface-color); padding: 2rem; border-radius: 8px; border: 1px solid var(--border-color); transition: transform 0.2s ease; }
.tool-card:hover { transform: translateY(-5px); }
.tool-card h3 { margin-top: 0; }
.tool-card .tool-tagline { font-weight: 600; color: var(--text-muted); margin-bottom: 1rem; }
.tool-card .learn-more { font-weight: 600; margin-top: 1.5rem; display: inline-block; text-decoration: none; color: var(--primary-color); }

/* --- Installation Section --- */
.installation-section { padding: 5rem 0; background-color: var(--surface-color); }
.code-block-container { max-width: 800px; margin: 2rem auto 0; background-color: #000; border-radius: 8px; padding: 1.5rem; border: 1px solid var(--border-color); }
pre { margin: 0; }
code.language-bash { font-family: var(--font-mono); font-size: 0.9rem; color: #dcdfe4; white-space: pre-wrap; }

/* --- Footer --- */
.main-footer { padding: 2rem 0; text-align: center; color: var(--text-muted); border-top: 1px solid var(--border-color); margin-top: 4rem; }

/* --- NEW STYLES FOR PRODUCT PAGES --- */
.demo-section {
    padding: 2rem 0 5rem;
}

.terminal-demo {
    background-color: #0D1117;
    border: 1px solid #30363d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.terminal-demo code {
    color: #c9d1d9;
}

.features-table-section {
    padding: 5rem 0;
}

.features-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.features-table th, .features-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.features-table thead {
    background-color: #000;
}

.features-table th {
    font-size: 1.1rem;
    font-weight: 600;
}

.features-table td {
    color: var(--text-muted);
}

.features-table td:first-child {
    color: var(--text-color);
    font-weight: 600;
}

.features-table td.check, .features-table td.cross {
    text-align: center;
    font-size: 1.5rem;
}

.features-table td.check {
    color: #28a745;
}

.features-table td.cross {
    color: #dc3545;
}

.features-table tbody tr:last-child td {
    border-bottom: none;
}
