.footer { margin-top: 0; }

.thankyou {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.thankyou-inner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.thankyou-card {
    background: var(--color-dark);
    border: 1px solid rgba(255, 107, 1, 0.15);
    border-radius: 1.75rem;
    padding: 5rem 4rem;
    text-align: center;
    max-width: 50rem;
    width: 100%;
}

.thankyou-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(255, 107, 1, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thankyou-title {
    font-family: var(--font-unbounded);
    font-size: var(--font-large-desktop);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.thankyou-sub {
    font-size: var(--font-main-desktop);
    line-height: 1.65;
    color: rgba(240, 237, 230, 0.55);
    margin-bottom: 2.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-transform: uppercase;
    background-color: var(--color-accent);
    padding: 0.875rem 3.125rem;
    border-radius: 80px;
    font-size: var(--font-main-desktop);
    font-weight: 700;
    color: var(--color-white);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;

    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .thankyou-card {
        padding: 3rem 2rem;
    }

    .thankyou-title {
        font-size: 1.875rem;
    }

    .thankyou-sub {
        font-size: 1rem;
    }
}
