@font-face {
    font-family: 'Helvetica Regular';
    src: url('/fonts/Helvetica Regular.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cream Light';
    src: url('/fonts/Cream Light.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Regular';
    src: url('/fonts/Inter Regular.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Bold';
    src: url('/fonts/Inter Bold.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

:root {
    --accent-color: #6aff00;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Helvetica Regular', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo-wrapper {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    position: absolute;
    top: 0;
}

.logo {
    margin: 0;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    cursor: pointer;
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #fff;
}

.content {
    width: clamp(80%, 90vw, 90%);
    text-align: center;
    padding: 1rem;
}

.title {
    font-family: 'Cream Light', sans-serif;
    font-size: clamp(1.5rem, 6vw, 3rem);
    line-height: clamp(1.8rem, 5vw + 1rem, 3.6rem);
    margin: 0 0 5rem;
}

.title-accent {
    font-style: italic;
}

.btn {
    background-color: #000;
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
}

.btn-image {
    width: 0.8rem;
    margin-left: -1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease, margin-left 0.3s ease;
}

.btn:hover .btn-image {
    opacity: 1;
    margin-left: 0.5rem;
}

.social-icons-wrapper {
    position: absolute;
    bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.social-icon img {
    width: 1.25rem;
    transition: opacity 0.2s ease;
}

.social-img-white {
    display: none;
}

.social-icon:hover {
    background-color: #000;
}

.social-icon:hover .social-img-white {
    display: block;
}

.social-icon:hover .social-img-black {
    display: none;
}

.calendly-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.calendly-inline-widget {
    width: clamp(90%, 95vw, 100%);
    height: 80%;
    max-height: 90vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-icon {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.hidden {
    opacity: 0;
    z-index: -1;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: clamp(80%, 90vw, 90%);
    justify-content: center;
    padding: 2rem 0;
}

.card {
    flex: 1 1 100%;
    max-width: 20rem;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(149, 157, 165, 0.2);
}

.card-text-primary {
    font-family: 'Inter Bold', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    line-height: clamp(1.8rem, 4vw + 1rem, 2.5rem);
    margin: 0 0 1rem;
}

.card-text-secondary {
    font-family: 'Inter Regular', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin: 0.5rem 0;
}

.card-text-accent {
    font-family: 'Inter Bold', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1rem);
    background-color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin: 0 0 0.5rem 0;
}

.card-text-accent-mark {
    color: var(--accent-color);
    font-family: 'Inter Bold', sans-serif;
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    padding-right: 0.5rem;
}

.accent-text-wrapper {
    display: flex;
    flex-wrap: wrap;
    /* gap: 0.5rem; */
}

.bg-light {
    background-color: #F9F4F1;
}

.footer {
    width: 100%;
    padding: 1.5rem 0;
    background-color: #F9F4F1;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: clamp(72%, 72vw, 72%);
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    border-radius: 1rem;
}

.footer .logo {
    font-size: clamp(1rem, 5vw, 1.5rem);
}

.footer .btn {
    padding: 0.5rem 1rem;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.wrapper-xl {
    min-height: auto;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

@media screen and (min-width: 768px) {
    .cards-wrapper {
        gap: 2.5rem;
    }

    .card {
        flex: 1 1 45%;
        max-width: 18rem;
    }

    .content {
        width: clamp(60%, 80vw, 70%);
    }

    .footer-wrapper {
        padding: 1rem 3rem;
    }
}

@media screen and (min-width: 1024px) {
    .cards-wrapper {
        gap: 3rem;
    }

    .card {
        flex: 1 1 30%;
        max-width: 20rem;
    }

    .content {
        width: clamp(50%, 60vw, 60%);
    }
}