/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 16 2026 | 07:14:49 */
/* Optional but recommended — adds the display font used for h2:
   <link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
   If you skip it, h2 falls back to Georgia/serif. */

.prx-card{
    font-family:Inter,Arial,sans-serif;
    position:relative;
    background:#fff;
    padding:40px;
    border-radius:22px;
    box-shadow:
        0 1px 2px rgba(13,31,60,.04),
        0 20px 50px -20px rgba(13,31,60,.22),
        0 0 0 1px rgba(13,31,60,.04);
    overflow:hidden;
}

.prx-card::before{
    content:"";
    position:absolute;
    top:-60px;
    right:-60px;
    width:180px;
    height:180px;
    background:conic-gradient(from 180deg, #3d7ef5, #7c5cff, #3d7ef5);
    filter:blur(40px);
    opacity:.35;
    border-radius:50%;
    pointer-events:none;
}

.prx-card h2{
    margin:0;
    font-family:"Fraunces",Georgia,serif;
    font-size:31px;
    font-weight:600;
    letter-spacing:-.01em;
    color:#0d1f3c;
    position:relative;
}

.prx-desc{
    margin-top:10px;
    margin-bottom:28px;
    color:#6b7690;
    line-height:1.6;
    font-size:14.5px;
    position:relative;
}

.prx-option{
    display:flex;
    flex-direction:column;
    padding:18px 20px;
    margin-bottom:14px;
    border-radius:16px;
    border:1.5px solid #e3e8f2;
    text-decoration:none;
    background:#fff;
    position:relative;
    transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.prx-option strong{
    font-size:16.5px;
    font-weight:600;
    color:#0d1f3c;
    letter-spacing:-.01em;
}

.prx-option span{
    font-size:13px;
    margin-top:4px;
    color:#6b7690;
}

.prx-option::after{
    content:"→";
    position:absolute;
    right:20px;
    top:50%;
    transform:translate(-4px,-50%);
    opacity:0;
    color:#3d7ef5;
    font-weight:600;
    transition:opacity .25s ease, transform .25s ease;
}

.prx-option:hover{
    border-color:#3d7ef5;
    transform:translateY(-2px);
    box-shadow:0 10px 24px -12px rgba(61,126,245,.35);
}

.prx-option:hover::after{
    opacity:1;
    transform:translate(0,-50%);
}

.prx-call{
    background:linear-gradient(135deg,#3d7ef5,#7c5cff);
    border:none;
    box-shadow:0 12px 28px -12px rgba(76,84,255,.55);
}

.prx-call strong{
    color:#fff;
}

.prx-call span{
    color:rgba(255,255,255,.82);
}

.prx-call::after{
    color:#fff;
}

.prx-call:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px -12px rgba(76,84,255,.65);
}

.prx-divider{
    display:flex;
    align-items:center;
    margin:26px 0;
}

.prx-divider:before,
.prx-divider:after{
    content:"";
    flex:1;
    height:1px;
    background:linear-gradient(90deg, transparent, #e4ebf5 20%, #e4ebf5 80%, transparent);
}

.prx-divider span{
    padding:0 14px;
    font-size:12px;
    font-weight:500;
    letter-spacing:.03em;
    color:#a3adc2;
}

/* Optional floating-label pattern (only activates if you use this markup):
   <div class="prx-field"><input placeholder=" "><label>Name</label></div>
   The empty placeholder=" " is required for the :not(:placeholder-shown) rule below. */

.prx-field{
    position:relative;
    margin-bottom:20px;
}

#prx-form input,
#prx-form select{
    width:100%;
    padding:16px 18px;
    margin-bottom:20px;
    border-radius:16px;
    border:1.5px solid #dfe8f5;
    font-size:15px;
    font-family:inherit;
    color:#0d1f3c;
    background:#fff;
    box-sizing:border-box;
    outline:none;
    transition:border-color .2s ease, box-shadow .2s ease;
    appearance:none;
}

/* if using the .prx-field wrapper, avoid double spacing */
.prx-field input,
.prx-field select{
    margin-bottom:0;
    padding:17px 16px 9px;
}

#prx-form select{
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6"><path d="M1 1l4 4 4-4" stroke="%236b7690" stroke-width="1.6" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat:no-repeat;
    background-position:right 16px center;
}

#prx-form label{
    position:absolute;
    left:16px;
    top:13px;
    font-size:15px;
    color:#98a2b8;
    pointer-events:none;
    transform-origin:left top;
    transition:transform .18s ease, color .18s ease, top .18s ease;
}

#prx-form input:focus,
#prx-form select:focus{
    border-color:#3d7ef5;
    box-shadow:0 0 0 4px rgba(61,126,245,.12);
}

#prx-form input:focus + label,
#prx-form input:not(:placeholder-shown) + label,
#prx-form select:focus + label,
#prx-form select.filled + label{
    top:7px;
    transform:scale(.72);
    color:#3d7ef5;
}

.prx-submit{
    width:100%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#3d7ef5,#7c5cff);
    background-size:160% 160%;
    color:#fff;
    font-size:17px;
    font-weight:700;
    letter-spacing:.01em;
    cursor:pointer;
    box-shadow:0 14px 30px -12px rgba(76,84,255,.55);
    transition:transform .25s ease, box-shadow .25s ease, background-position .5s ease;
}

.prx-submit:hover{
    transform:translateY(-2px);
    background-position:100% 0%;
    box-shadow:0 18px 36px -12px rgba(76,84,255,.65);
}

.prx-submit:active{
    transform:translateY(0);
}

.prx-success{
    display:none;
    margin-top:18px;
    text-align:center;
    color:#198754;
    font-weight:700;
    font-size:14.5px;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.prx-success.show{
    display:flex;
    animation:fadeUp .4s ease;
}

@keyframes fadeUp{
    from{ opacity:0; transform:translateY(6px); }
    to{ opacity:1; transform:translateY(0); }
}

@media(max-width:600px){
.prx-card{
    padding:24px;
    border-radius:20px;
}
.prx-card h2{
    font-size:24px;
}
}