﻿html, body {
    background: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --wg-primary: #c8102e;
    --wg-primary-dark: #a50d26;
    --wg-primary-10: rgba(200,16,46,.08);
    --wg-primary-15: rgba(200,16,46,.12);
    --wg-neutral-900: #171717;
    --wg-neutral-700: #404040;
    --wg-neutral-500: #737373;
    --wg-neutral-400: #a3a3a3;
    --wg-neutral-200: #e5e5e5;
    --wg-neutral-100: #f5f5f5;
    --wg-neutral-75: #f8f8f8;
    --wg-neutral-50: #fafafa;
    --wg-border: #e5e5e5;
    --wg-card: #ffffff;
    --wg-rating: #f5b400;
}

.wg-page * {
    box-sizing: border-box;
}

.wg-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--wg-neutral-900);
    background: #fff;
}

/* ===== HEADER ===== */
.wg-header {
    border-bottom: 1px solid var(--wg-border);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}

.wg-header-inner {
    max-width: 84rem;
    margin: 0 auto;
    padding: 0 1rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wg-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.wg-brand-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--wg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(200,16,46,.25);
    flex-shrink: 0;
}

    .wg-brand-icon svg {
        width: 2rem;
        height: 2rem;
    }

.wg-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

    .wg-brand-text strong {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .wg-brand-text span {
        font-size: .875rem;
        color: var(--wg-neutral-500);
    }

.wg-nav-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: .375rem;
    font-size: .875rem;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    transition: background .2s;
}

    .wg-nav-link:hover {
        background: var(--wg-neutral-100);
    }

    .wg-nav-link svg {
        width: 1rem;
        height: 1rem;
    }

/* ===== HERO ===== */
.wg-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--wg-border);
    background: linear-gradient(135deg, var(--wg-primary-10), rgba(0,0,0,.02) 50%, #fff);
}

.wg-hero-inner {
    max-width: 84rem;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
    position: relative;
    z-index: 1;
}

.wg-hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}



.wg-hero-inner {
    padding: 7rem 2rem;
}

}

.wg-hero-copy h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}



.wg-hero-copy p {
    font-size: 1.05rem;
    color: var(--wg-neutral-500);
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 0 2rem;
}

.wg-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--wg-primary);
    color: #fff;
    border: none;
    border-radius: .5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, box-shadow .2s;
}

    .wg-cta:hover {
        background: var(--wg-primary-dark);
        box-shadow: 0 8px 18px rgba(200,16,46,.25);
    }

.wg-hero-media {
    position: relative;
}

.wg-hero-image-wrap {
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--wg-primary-15);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .wg-hero-image-wrap img {
        width: 100%;
        height: 16rem;
        object-fit: cover;
        object-position: 50% 25%;
        display: block;
    }



.wg-hero-float-card {
    margin-top: .75rem;
    border-radius: 1rem;
    border: 1px solid var(--wg-primary-15);
    background: rgba(255,255,255,.97);
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}



.wg-float-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}

.wg-live-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--wg-primary-10);
    color: var(--wg-primary);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .25rem .6rem;
    border-radius: 999px;
}

.wg-live-dot {
    position: relative;
    display: inline-block;
    width: .5rem;
    height: .5rem;
}

    .wg-live-dot::before, .wg-live-dot::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: var(--wg-primary);
    }

    .wg-live-dot::before {
        animation: wg-ping 1.6s cubic-bezier(0,0,.2,1) infinite;
        opacity: .6;
    }



.wg-rating-inline {
    display: flex;
    align-items: center;
    gap: .3rem;
}

    .wg-rating-inline svg {
        width: 1rem;
        height: 1rem;
        color: var(--wg-rating);
        fill: currentColor;
    }

    .wg-rating-inline span {
        font-size: .8rem;
        font-weight: 700;
        margin-left: .25rem;
    }

.wg-float-people {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.wg-avatar-stack {
    display: flex;
}

    .wg-avatar-stack span {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 50%;
        border: 2px solid var(--wg-card);
        background: var(--wg-primary-15);
        color: var(--wg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: -.6rem;
        font-size: .7rem;
        font-weight: 700;
    }

        .wg-avatar-stack span:first-child {
            margin-left: 0;
        }

        .wg-avatar-stack span svg {
            width: 1rem;
            height: 1rem;
        }

    .wg-avatar-stack .wg-avatar-plus {
        background: var(--wg-primary);
        color: #fff;
    }

.wg-float-count-title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.wg-float-count-sub {
    font-size: .75rem;
    color: var(--wg-neutral-500);
}

.wg-float-bottom {
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid var(--wg-border);
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--wg-neutral-500);
}

    .wg-float-bottom .wg-pulse-dot {
        width: .375rem;
        height: .375rem;
        border-radius: 50%;
        background: var(--wg-primary);
        display: inline-block;
    }

    .wg-float-bottom strong {
        color: var(--wg-neutral-900);
    }

.wg-hero-blur {
    position: absolute;
    left: 50%;
    top: 0;
    width: 24rem;
    height: 24rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--wg-primary);
    opacity: .12;
    filter: blur(90px);
    pointer-events: none;
}

/* ===== GENERIC SECTION ===== */
.wg-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.wg-section-muted {
    width: 100%;
    background: var(--wg-neutral-100);
}


.wg-section-easystep {
    width: 100%;
    background: var(--wg-neutral-100);
}

.wg-section-benefits {
    width: 100%;
    background: var(--wg-neutral-50);
}

.wg-section-process {
    width: 100%;
    background: var(--wg-neutral-75);
}

.wg-section-head {
    text-align: center;
    margin-bottom: 4rem;
}

    .wg-section-head h2 {
        font-size: 1.9rem;
        font-weight: 700;
        margin: 0 0 1rem;
    }



    .wg-section-head p {
        font-size: 1.1rem;
        color: var(--wg-neutral-500);
        max-width: 40rem;
        margin: 0 auto;
    }

/* ===== FEATURE CARDS ===== */
.wg-grid-3 {
    display: grid;
    gap: 2rem;
}



.wg-feature-card {
    border: 1px solid var(--wg-border);
    border-radius: .9rem;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
    transition: box-shadow .2s;
}

    .wg-feature-card:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,.06);
    }

.wg-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: .9rem;
    background: var(--wg-primary-10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .wg-feature-icon svg {
        width: 2rem;
        height: 2rem;
        color: var(--wg-primary);
    }

.wg-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 .75rem;
}

.wg-feature-card p {
    color: var(--wg-neutral-500);
    line-height: 1.6;
    margin: 0;
}

/* ===== FORM SECTION ===== */
.wg-form-section {
    position: relative;
    background: var(--wg-neutral-100);
    padding: 5rem 1rem;
}

    /* .wg-form-wrap {
        max-width: 60rem;
        margin: 0 auto;
    } */

    .wg-form-section::before,
    .wg-form-section::after {
        content: "";
        position: absolute;
        width: 24rem;
        height: 24rem;
        border-radius: 50%;
        filter: blur(80px);
        opacity: .06;
        pointer-events: none;
        z-index: 0;
    }

    .wg-form-section::before {
        top: -8rem;
        left: -8rem;
        background: var(--wg-primary);
    }

    .wg-form-section::after {
        right: -8rem;
        bottom: -8rem;
        background: #f472b6; /* light pink */
    }

.wg-form-wrap {
    position: relative;
    z-index: 1;
    max-width: 60rem;
    margin: 0 auto;
}

.wg-notice-card {
    border: 1px solid var(--wg-border);
    border-radius: .6rem;
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

    .wg-notice-card svg {
        width: 1.25rem;
        height: 1.25rem;
        color: var(--wg-neutral-500);
        flex-shrink: 0;
        margin-top: .15rem;
    }

    .wg-notice-card p {
        margin: 0;
        line-height: 1.6;
    }

    .wg-notice-card strong {
        color: var(--wg-neutral-900);
    }

.wg-form-card {
    border: 1px solid var(--wg-border);
    border-radius: .9rem;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
    scroll-margin-top: 6rem;
}

.wg-form-card-head {
    padding: 1.5rem 1.5rem 0;
}

    .wg-form-card-head h2 {
        font-size: 1.9rem;
        font-weight: 700;
        margin: 0;
    }

    .wg-form-card-head p {
        color: var(--wg-neutral-500);
        font-size: 1.05rem;
        margin: .25rem 0 0;
    }

.wg-form-card-body {
    padding: 1.5rem;
}

.wg-info-box {
    border-radius: .6rem;
    background: var(--wg-neutral-100);
    border: 1px solid var(--wg-border);
    padding: 1.25rem;
    display: flex;
    gap: .75rem;
    margin-bottom: 2.5rem;
}

    .wg-info-box svg {
        width: 1.25rem;
        height: 1.25rem;
        color: var(--wg-neutral-500);
        flex-shrink: 0;
        margin-top: .15rem;
    }

    .wg-info-box p {
        margin: 0 0 .25rem;
        font-weight: 600;
    }

    .wg-info-box span {
        font-size: .9rem;
        color: var(--wg-neutral-500);
        line-height: 1.6;
    }

.wg-radio-cols {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}



.wg-radio-label-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

    .wg-radio-label-row label {
        font-size: 1.1rem;
        font-weight: 600;
    }

.wg-tooltip {
    position: relative;
    display: inline-flex;
    cursor: help;
}

    .wg-tooltip svg {
        width: 1rem;
        height: 1rem;
        color: var(--wg-neutral-400);
    }

.wg-tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 1.5rem;
    z-index: 10;
    width: 16rem;
    background: #fff;
    border: 1px solid var(--wg-border);
    border-radius: .4rem;
    padding: .75rem;
    font-size: .75rem;
    color: var(--wg-neutral-700);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    transition: opacity .15s;
}

.wg-tooltip:hover .wg-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.wg-radio-option {
    display: flex;
    align-items: center;
    gap: .75rem;
    border: 2px solid var(--wg-border);
    border-radius: .6rem;
    padding: 1.1rem;
    margin-bottom: .5rem;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}

    .wg-radio-option:hover {
        background: var(--wg-neutral-100);
        border-color: var(--wg-primary-15);
    }

    .wg-radio-option.wg-selected {
        border-color: var(--wg-primary);
    }

.wg-radio-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid var(--wg-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .wg-radio-dot::after {
        content: "";
        width: .5rem;
        height: .5rem;
        border-radius: 50%;
        background: var(--wg-primary);
        transform: scale(0);
        transition: transform .1s;
    }

.wg-radio-option.wg-selected .wg-radio-dot::after {
    transform: scale(1);
}

.wg-radio-option span.wg-radio-text {
    font-weight: 500;
    font-size: 1rem;
}

.wg-contact-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-top: 2px solid var(--wg-border);
    padding-top: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

    .wg-contact-head h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        white-space: nowrap;
    }

    .wg-contact-head .wg-hr {
        flex: 1;
        height: 1px;
        background: var(--wg-border);
    }

.wg-privacy-box {
    border-radius: .5rem;
    background: var(--wg-neutral-100);
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: .9rem;
    color: var(--wg-neutral-500);
}

    .wg-privacy-box strong {
        color: var(--wg-neutral-900);
    }

.wg-form-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}



.wg-field label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.wg-field input {
    width: 100%;
    height: 3rem;
    border: 1px solid var(--wg-border);
    border-radius: .5rem;
    padding: 0 .9rem;
    font-size: 1rem;
    background: #fff;
    color: var(--wg-neutral-900);
}

.wg-field input,
.wg-field textarea,
.wg-field select {
    background-color: var(--wg-neutral-100);
}

    .wg-field input:focus {
        outline: none;
        border-color: var(--wg-primary);
        box-shadow: 0 0 0 3px var(--wg-primary-10);
    }

    .wg-field input.wg-input-error {
        border-color: var(--wg-primary);
    }

.wg-field-error-msg {
    color: var(--wg-primary);
    font-size: .8rem;
    margin: .35rem 0 0;
}

.wg-confirm-box {
    border-radius: .5rem;
    background: var(--wg-neutral-100);
    border: 1px solid var(--wg-border);
    padding: 1rem;
    margin: 1rem 0 1.5rem;
    display: flex;
    gap: .6rem;
    font-size: .9rem;
}

    .wg-confirm-box svg {
        width: 1rem;
        height: 1rem;
        flex-shrink: 0;
        margin-top: .15rem;
    }

.wg-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.wg-checkbox-box {
    width: 1.1rem;
    height: 1.1rem;
    border: 1px solid var(--wg-primary);
    border-radius: .2rem;
    flex-shrink: 0;
    margin-top: .15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

    .wg-checkbox-box svg {
        width: .75rem;
        height: .75rem;
        color: #fff;
        display: none;
    }

.wg-checkbox-row.wg-checked .wg-checkbox-box {
    background: var(--wg-primary);
}

    .wg-checkbox-row.wg-checked .wg-checkbox-box svg {
        display: block;
    }

.wg-checkbox-row span.wg-checkbox-label {
    font-size: .875rem;
    line-height: 1.6;
    color: var(--wg-neutral-500);
}

.wg-submit-btn {
    width: 100%;
    height: 3.5rem;
    border: none;
    border-radius: .6rem;
    background: var(--wg-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(200,16,46,.25);
    transition: background .2s;
    margin-top: .5rem;
}

    .wg-submit-btn:hover {
        background: var(--wg-primary-dark);
    }

.wg-ssl-note {
    text-align: center;
    font-size: .875rem;
    color: var(--wg-neutral-500);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

    .wg-ssl-note svg {
        width: 1rem;
        height: 1rem;
    }

/* ===== STEPS ===== */
.wg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wg-step-num {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--wg-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.wg-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 .75rem;
}

.wg-step p {
    color: var(--wg-neutral-500);
    line-height: 1.6;
    margin: 0;
}

/* ===== INFO CARDS 2x2 ===== */
.wg-grid-2 {
    display: grid;
    gap: 2rem;
}



.wg-info-card {
    border: 1px solid var(--wg-border);
    border-radius: .9rem;
    background: #fff;
    padding: 2rem;
}

    .wg-info-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin: 0 0 1rem;
    }

    .wg-info-card p {
        color: var(--wg-neutral-500);
        line-height: 1.65;
        margin: 0 0 1rem;
    }

        .wg-info-card p:last-child {
            margin-bottom: 0;
        }

/* ===== TRUST ICONS ===== */
.wg-trust-grid {
    display: grid;
    gap: 3rem;
}



.wg-trust-item {
    text-align: center;
}

.wg-trust-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--wg-primary-10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .wg-trust-icon svg {
        width: 2.5rem;
        height: 2.5rem;
        color: var(--wg-primary);
    }

.wg-trust-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 .5rem;
}

.wg-trust-item p {
    font-size: .9rem;
    color: var(--wg-neutral-500);
    margin: 0;
}

/* ===== STATS BANNER ===== */
.wg-stats-banner {
    background: var(--wg-primary);
    padding: 6rem 1rem;
}

.wg-stats-inner {
    max-width: 84rem;
    margin: 0 auto;
}

.wg-stats-head {
    text-align: center;
    margin-bottom: 3rem;
}

    .wg-stats-head h2 {
        color: #fff;
        font-size: 1.9rem;
        font-weight: 700;
        margin: 0 0 .75rem;
    }

    .wg-stats-head p {
        color: rgba(255,255,255,.9);
        font-size: 1.1rem;
        margin: 0;
    }

.wg-stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}



.wg-stat-num {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.wg-stat-label {
    color: rgba(255,255,255,.9);
    font-size: 1.05rem;
}

/* ===== TESTIMONIALS ===== */
.wg-testi-card {
    border: 1px solid var(--wg-border);
    border-radius: .9rem;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.wg-testi-stars {
    display: flex;
    gap: .15rem;
    margin-bottom: 1rem;
}

    .wg-testi-stars svg {
        width: 1.25rem;
        height: 1.25rem;
        color: var(--wg-rating);
        fill: currentColor;
    }

.wg-testi-card p.wg-quote {
    font-style: italic;
    color: var(--wg-neutral-500);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.wg-testi-person {
    display: flex;
    align-items: center;
}

.wg-testi-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--wg-primary-10);
    color: var(--wg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.wg-testi-name {
    font-weight: 600;
    margin-left: 1rem;
}

.wg-testi-city {
    font-size: .875rem;
    color: var(--wg-neutral-500);
    margin-left: 1rem;
}

/* ===== FOOTER NOTICE ===== */

.wg-footer-notice {
    border-top: 1px solid var(--wg-border);
    border-bottom: 1px solid var(--wg-border);
    text-align: center;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
}


    .wg-footer-notice h2 {
        margin: 0;
        font-size: .8rem;
        font-weight: 400;
        color: var(--wg-neutral-500);
    }

/* ===== FOOTER ===== */
.wg-footer {
    background: var(--wg-neutral-100);
}

.wg-footer-inner {
    max-width: 84rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.wg-footer-grid {
    display: grid;
    gap: 2rem;
}



    .wg-footer-grid h3 {
        font-size: .9rem;
        font-weight: 600;
        margin: 0 0 .75rem;
    }

    .wg-footer-grid ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .wg-footer-grid a {
        color: var(--wg-neutral-500);
        text-decoration: none;
        font-size: .9rem;
    }

        .wg-footer-grid a:hover {
            color: var(--wg-neutral-900);
        }

.wg-footer-bottom {
    text-align: center;
    font-size: .8rem;
    color: var(--wg-neutral-500);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--wg-border);
}




/* media section */


@media (min-width: 1024px) {
    .wg-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

@media (min-width: 1024px) {
    .wg-hero-copy h1 {
        font-size: 4rem;
    }
}

@media (min-width: 640px) {
    .wg-hero-image-wrap img {
        height: 20rem;
    }
}

@media (min-width: 640px) {
    .wg-hero-media {
        padding-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .wg-hero-image-wrap img {
        height: auto;
        max-height: 32rem;
        object-position: 50% 50%;
    }
}

@media (max-width: 576px) {

    .wg-hero-copy {
        display: flex;
        flex-direction: column;
    }

    .wg-cta {
        display: flex;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}


@media (min-width: 640px) {
    .wg-hero-float-card {
        position: absolute;
        left: 1.5rem;
        right: 1.5rem;
        bottom: -1.5rem;
        margin-top: 0;
    }
}

@keyframes wg-ping {
    75%, 100% {
        transform: scale(2.2);
        opacity: 0;
    }
}


@media (min-width: 640px) {
    .wg-section-head h2 {
        font-size: 2.25rem;
    }
}


@media (min-width: 768px) {
    .wg-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .wg-radio-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .wg-form-grid.wg-cols-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .wg-form-grid.wg-cols-3 {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 768px) {
    .wg-form-grid.wg-cols-plz {
        grid-template-columns: 1fr 2fr;
    }
}


@media (min-width: 768px) {
    .wg-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .wg-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .wg-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 640px) {
    .wg-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/*@media (max-width: 480px) {
    .wg-page,
    .wg-page * {
        min-width: 0;
    }

    .wg-page {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .wg-section,
    .wg-section-benefits,
    .wg-section-muted,
    .wg-section-process,
    .wg-section-easystep,
    .wg-section-benefits {
        width: 100%;
        max-width: 100%;
    }

    .wg-section {
        padding: 3rem 1rem;
    }

    .wg-section-head h2 {
        white-space: normal;
        overflow-wrap: break-word;
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .wg-feature-card {
        min-width: 0;
        padding: 1.5rem;
    }

        .wg-feature-card p,
        .wg-section-head p {
            overflow-wrap: break-word;
        }
}*/
