:root {
    color-scheme: light;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    border-radius: 0.5rem;
    background: #0b1f3a;
    color: #fff;
    padding: 0.75rem 1rem;
    font-weight: 800;
    transition: top 160ms ease;
}

.skip-link:focus {
    top: 1rem;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 1.25rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
    transform: translateY(-0.45rem);
}

.menu-toggle span::after {
    transform: translateY(0.325rem);
}

.menu-toggle[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span::after {
    transform: translateY(-0.125rem) rotate(-90deg);
}

.hero-image-wrap {
    position: relative;
    min-height: 360px;
}

.hero-image-wrap::before {
    position: absolute;
    inset: 8% -8% -8% 14%;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(14, 159, 154, 0.18), rgba(245, 182, 75, 0.2));
    content: "";
}

.hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 7 / 5;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 24px 70px rgba(11, 31, 58, 0.18);
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    border: 1px solid rgb(226 232 240);
    border-radius: 0.5rem;
    background: #fff;
    padding: 1.25rem;
}

.process-step span {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 0.5rem;
    background: #0e9f9a;
    color: #fff;
    font-weight: 900;
}

.process-step h3 {
    font-size: 1.125rem;
    font-weight: 900;
}

.process-step p {
    margin-top: 0.35rem;
    color: rgb(71 85 105);
    line-height: 1.7;
}

.field span {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0b1f3a;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgb(203 213 225);
    border-radius: 0.5rem;
    background: #fff;
    padding: 0.9rem 1rem;
    color: #0b1f3a;
    outline: none;
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #0e9f9a;
    box-shadow: 0 0 0 4px rgba(14, 159, 154, 0.16);
}

.faq-item {
    border: 1px solid rgb(226 232 240);
    border-radius: 0.5rem;
    background: #fff;
    padding: 1.25rem;
}

.faq-item summary {
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 900;
}

.faq-item p {
    margin-top: 0.9rem;
    color: rgb(71 85 105);
    line-height: 1.75;
}

@media (max-width: 640px) {
    .hero-image-wrap {
        min-height: 260px;
    }

    .hero-image {
        aspect-ratio: 1 / 0.82;
    }
}
