/* ===== EKIOO DESIGN SYSTEM ===== */

:root {
    --bg: #0a0a1a;
    --surface: #1a1a2e;
    --text: #eaeaea;
    --text-secondary: #b0b8c9;
    --accent: #d6b86a;
    --accent-hover: #e5ca7a;
    --accent-light: rgba(214,184,106,0.1);
    --border: #2a2a4a;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
    --max-width: 1200px;
    --transition: 0.2s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1[tabindex], h2[tabindex], h3[tabindex] {
    outline: none;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

code, pre {
    font-family: 'JetBrains Mono', monospace;
}

code {
    background: var(--accent-light);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
}

pre {
    background: #0d1117;
    color: #e0e0e0;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* ===== NAVIGATION ===== */

.site-nav {
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px) saturate(120%);
    background: linear-gradient(90deg, rgba(10,10,26,0.85) 0%, rgba(30,25,50,0.85) 50%, rgba(10,10,26,0.85) 100%);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    text-decoration: none;
}

.nav-brand img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: var(--accent-light);
}

.nav-links .btn-primary {
    color: #0a0a1a;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.nav-links .btn-primary:hover {
    color: #0a0a1a;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text);
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.15rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}

.lang-btn:hover {
    background: var(--accent-light);
}

.lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    filter: grayscale(100%) opacity(0.5);
    transition: all var(--transition);
}

.lang-flag.active {
    filter: none;
    opacity: 1;
}

.lang-btn:hover .lang-flag {
    filter: grayscale(0%);
    opacity: 1;
}

.nav-right-mobile {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.lang-switcher {
    margin-left: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0;
}

/* ===== LAYOUT ===== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO ===== */

.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
}

/* Particle canvas — managed globally in MainLayout */

.hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a85a 0%, #d6b86a 50%, #e5ca7a 100%);
    color: #0a0a1a;
    border: 1px solid rgba(214,184,106,0.3);
    box-shadow: 0 2px 12px rgba(214,184,106,0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d6b86a 0%, #e5ca7a 50%, #f0d98a 100%);
    color: #0a0a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(214,184,106,0.35);
}

.btn-secondary {
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(214,184,106,0.15);
}

/* ===== CARDS ===== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.card {
    background: rgba(26,26,46,0.6);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(42,42,74,0.6);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2), 0 0 35px rgba(100,80,180,0.10), 0 0 1px rgba(255,255,255,0.05);
}

.card:hover {
    background: rgba(26,26,46,0.75);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 40px rgba(214,184,106,0.08), 0 0 1px rgba(255,255,255,0.1);
    border-color: rgba(214,184,106,0.3);
    transform: translateY(-3px);
}

.card-with-header {
    padding: 0;
    overflow: hidden;
}

.card-header-bar {
    background: linear-gradient(135deg, #1e1e36 0%, #2a2448 50%, #1e2a3a 100%);
    border-bottom: 1px solid rgba(214,184,106,0.12);
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
}

.card-header-bar h3,
.card-header-bar h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.4;
}

.card-with-header > p,
.card-with-header > .card-tags,
.card-with-header .card-body-link > p {
    padding: 0 1.25rem;
}

.card-with-header > p:first-of-type,
.card-with-header .card-body-link > p:first-of-type {
    padding-top: 0.75rem;
}

.card-with-header > .card-tags {
    padding-bottom: 1.25rem;
}

.card-body-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-image {
    margin: 0 1.25rem 1rem 1.25rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42,42,74,0.6);
    background: rgba(0,0,0,0.2);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card:hover .card-image img {
    transform: scale(1.04);
}

.card > h3 {
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.tag {
    background: var(--bg);
    color: var(--text-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: inline-block;
}

a.tag:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.tag-accent {
    background: var(--accent-light);
    color: var(--accent);
}

/* ===== PRICING CARD ===== */

.pricing-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0 0.25rem;
}

.pricing-card .price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card .features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card .features li::before {
    content: "\2713";
    color: var(--accent);
    font-weight: 700;
}

.pricing-card.featured {
    border-color: var(--accent);
    position: relative;
}

.pricing-card.featured::before {
    content: "Populaire";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== BLOG LIST ===== */

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.blog-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(26,26,46,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(42,42,74,0.6);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
}

.blog-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    color: var(--text);
}

.blog-item-link {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
}

.blog-item-with-tags {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-date {
    flex-shrink: 0;
    text-align: center;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    min-width: 60px;
}

.blog-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.blog-date .month {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

.blog-content h3 {
    margin-bottom: 0.375rem;
    font-size: 1.15rem;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ===== ARTICLE ===== */

.article,
.content-panel {
    background: rgba(10,10,26,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    border: 1px solid rgba(42,42,74,0.4);
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.article {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.content-panel {
    padding: 1rem 1.5rem;
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.article-header h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.article-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.375rem;
}

.article-body img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
}

.article-body blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== CONTACT FORM ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(42,42,74,0.8);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: rgba(255,255,255,0.07);
    color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group .form-control::placeholder {
    color: rgba(176,184,201,0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group .form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    padding: 2rem;
    background: rgba(26,26,46,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(42,42,74,0.6);
    border-radius: var(--radius);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-info .contact-link-grid .contact-link {
    width: 110px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    font-size: 0.85rem;
}

.contact-link .icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== TIMELINE ===== */

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.4rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--surface);
    transform: translateX(-4px);
}

.timeline-item .year {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* ===== FOOTER ===== */

.site-footer {
    background: rgba(6,6,18,0.85);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    color: var(--text-secondary);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.footer-brand img {
    height: 24px;
    width: auto;
}

.site-footer .footer-heading {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== VALUE PROPOSITION GRID ===== */

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

.value-card {
    background: rgba(26,26,46,0.5);
    border: 1px solid rgba(42,42,74,0.5);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(214,184,106,0.25);
    background: rgba(26,26,46,0.7);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.value-card h4 {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CARD ICON ===== */

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

/* ===== STEPS GRID ===== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #b89a4a);
    color: var(--bg);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-card h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== 404 ===== */

.notfound-icon {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), #b89a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
}

/* ===== ARTICLE SHARE ===== */

.article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(26,26,46,0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== CLIENTS GRID ===== */

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.client-item {
    background: rgba(26,26,46,0.5);
    border: 1px solid rgba(42,42,74,0.5);
    border-radius: var(--radius);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.client-item:hover {
    border-color: rgba(214,184,106,0.3);
    color: var(--accent);
}

.client-item-more {
    background: transparent;
    border-color: transparent;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero { padding: 4rem 0 3rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero .subtitle { font-size: 1.1rem; }

    .section { padding: 3rem 0; }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .value-grid,
    .value-grid-4 {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-right-mobile {
        display: flex;
    }

    .lang-switcher {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
}

/* ===== UTILITIES ===== */

.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
