:root {
    --color-primary: #ff5527;
    --color-primary-dark: #d93e17;
    --color-green: #006a4e;
    --color-text: #424242;
    --color-muted: #6c757d;
    --color-line: #e8ecef;
    --color-soft: #f7f9f8;
    --color-white: #ffffff;
    --shadow-soft: 0 18px 50px rgba(41, 46, 51, 0.1);
    --radius: 18px;
    --radius-small: 10px;
    --container: 1120px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.25rem, 8vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.7rem, 5vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

p {
    color: var(--color-muted);
}

ul {
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.55rem;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.narrow {
    max-width: 760px;
}

.section {
    padding: 64px 0;
}

.soft {
    background: var(--color-soft);
}

.eyebrow {
    color: var(--color-green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1.1;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 12px 22px rgba(255, 85, 39, 0.24);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-secondary {
    background: var(--color-green);
    color: var(--color-white);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-text);
}

.full {
    width: 100%;
}

.text-link {
    color: var(--color-primary);
    font-weight: 800;
}

.action-row,
.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}


button.text-link {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    color: var(--color-primary);
    font-weight: 800;
    cursor: pointer;
    text-align: left;
}

button.text-link:hover,
a.text-link:hover {
    text-decoration: underline;
}
