/* RESET & BASE */
:root {
    --primary: #1e293b;
    --primary-hover: #0f172a;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --text-main: #334155;
    --text-muted: #64748b;
    --radius-lg: 12px;
    --radius-md: 8px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

text-center {
    text-align: center;
}

/* HEADER */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.header-status {
    font-size: 13px;
    background: #f1f5f9;
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 20px;
}

.header-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* NOTICE BANNER */
.notice-banner {
    padding: 40px 0 20px 0;
}

.notice-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.notice-badge {
    display: inline-block;
    background: #fef2f2;
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.notice-card h1 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
}

.notice-card p {
    color: var(--text-main);
    margin-bottom: 8px;
}

/* SECTION TITLES */
.section-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 24px;
    margin-top: 40px;
}

/* PRODUCT GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.product-card.highlight {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-md);
}

.product-badge {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.product-badge.green {
    background: #dcfce7;
    color: #15803d;
}

.product-badge.gray {
    background: #f1f5f9;
    color: #64748b;
}

.product-card h3 {
    font-size: 20px;
    color: var(--primary);
}

.product-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-main);
    flex-grow: 1;
    margin-bottom: 16px;
}

.product-status-text {
    font-size: 12px !important;
    color: #94a3b8 !important;
    font-style: italic;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

/* BUTTONS */
.btn {
    display: inline-block;
    text-align: center;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: #f1f5f9;
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* HERO CVITAE */
.hero-cvitae {
    padding: 50px 0 30px 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-cvitae h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 24px auto;
}

.hero-info {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.feature-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.feature-card h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    margin-top: 40px;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.faq-item summary {
    cursor: pointer;
    font-size: 15px;
    color: var(--primary);
}

.faq-content {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-main);
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

/* CTA BOTTOM */
.cta-bottom {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    margin-bottom: 40px;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary);
}

/* FOOTER */
.site-footer {
    padding: 30px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer a {
    color: var(--accent);
    text-decoration: none;
}