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

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
}
.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 15px 25px;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

html {
    font-size: var(--font-size);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    font-size: var(--font-size);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1920px) {
    .container {
        padding: 0;
    }
}

/* Figma: Section Titles Desktop — 38px Bold, letter-spacing 1.9px, #272727 */
.section-title {
    font-family: var(--font);
    font-size: 38px;
    letter-spacing: 1.9px;
}

/* Figma CTA pattern: 423.376 × 85.015px, pill radius 56.11px */
.cta-button {
    width: 423.376px;
    height: 85.015px;
    color: #707070;
    font-family: var(--font);
    font-weight: 500;
    font-size: 23.804px;
    border: 0.85px solid #707070;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

@media (max-width: 767px) {
    .section-title {
        font-size: 25px;
        font-weight: 500;
        letter-spacing: 1.25px;
    }
    .cta-button {
        width: 300px;
        height: 62px;
        font-size: 18px;
    }
}

/* ==========================================================================
   Slider Nav — shared pill with prev/next arrows
   Figma desktop: 103.719 × 45.058px, bg white 57%, radius 22.954px
   Figma mobile: 50 × 22px, radius 27px
   ========================================================================== */
.slider-nav {
    z-index: 10;
    width: 103.719px;
    height: 45.058px;
    background: rgba(255, 255, 255, 0.57);
    padding: 0 4px;
}

.slider-nav__btn {
    width: 36.557px;
    height: 36.557px;
    background: none;
}


.slider-nav__btn--prev img {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .slider-nav {
        width: 79.719px;
        height: 34.632px;
        border-radius: 17.67px;
    }
    .slider-nav__btn {
        width: 28px;
        height: 28px;
    }
}
