/* ===============================
   CSS RESET (LIGHT)
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ===============================
   ROOT VARIABLES
================================ */

:root {
    --primary: #0fb26a;
    --primary-dark: #059669;
    --text-dark: #111827;
    --text-muted: #e5e7eb;
    --bg-light: #f9fafb;
    --border-light: #e5e7eb;
}

/* ===============================
   GLOBAL BODY
================================ */

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
}

/* ===============================
   LINK & IMAGE
================================ */

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===============================
   CONTAINER HELPER
================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   TYPOGRAPHY
================================ */

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

p {
    margin: 0;
    color: var(--text-muted);
}

/* ===============================
   UTILITIES
================================ */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.hidden {
    display: none !important;
}
