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

*::before,
*::after {
    box-sizing: border-box
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    padding-top: var(--nav-height);
    color: var(--gray-800);
    background-color: var(--gray-50);
    font-weight: 400;
    overflow-x: hidden
}

section {
    padding: var(--section-padding);
    position: relative;
    background: #ffffff
}

section+section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0))
}

.hero-section + section::before {
    display: none;
}

section.compact {
    padding: 4rem 0
}

.container {
    max-width: 1320px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -.025em
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.6
}

.text-primary {
    color: var(--primary-color) !important
}

.section-title {
    margin-bottom: 3.5rem;
    position: relative;
    text-align: center
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative
}

.section-title h2::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: .06;
    z-index: -1
}

.section-title .lead {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300
}

p {
    font-size: .93rem
}

.small {
    font-size: .85rem !important
}
