:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-soft: #f3e8ff;
    --text: #111827;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --bg: #f6f7fb;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 8px 24px rgba(17,24,39,0.06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}
a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 56px 0;
}

h1, h2, h3, h4, p {
    margin-top: 0;
}