﻿* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}svg {
    height: 30px;
    width: 30px;
}.statgrid-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.container {
    width: 1202px;
    margin: auto;
    max-width: 100%;
}header,footer {
    width: 100%;
}.statheader_lead {
    flex: 1 0 auto;
}.stataward_show {
    flex: 0 0 auto;
}html,body {
    height: 100%;
    color: #000000;
    font-family: Arial, sans-serif;
    scroll-behavior: auto;
    min-height: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header .top_plank {
    color:  #ffffff;
    background: rgb(195,184,203);
}header .top_plank .statbest_learntrack div svg, header .top_plank .statbest_learntrack div svg path {
    fill: #ffffff;
}header .top_plank .statbest_learntrack div span {
    color: #ffffff;
}header .top_plank .statbest_learntrack {
    display: flex;
    padding: 15px 0 10px 0;
    line-height: 21px;
    justify-content: flex-start;
    font-size: 15px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}header .top_plank .statbest_learntrack div {
    display: flex;
    align-items: center;
    margin-right: 24px;
    justify-content: flex-start;
}header .top_plank .statbest_learntrack div img, header .top_plank .statbest_learntrack div svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}.stattitle_opener {
    align-items: center;
    background: linear-gradient(135deg, rgb(231,220,240) 0%, rgba(245, 245, 250, 0.9) 100%);
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex;
    overflow: hidden;
    position: relative;
}.stattitle_opener::before {
    top: 0;
    background: linear-gradient(45deg, rgb(195,184,203,0.5) 0%, transparent 40%);
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    left: 0;
    position: absolute;
    content: "";
}.stattitle_opener > div {
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    z-index: 2;
    display: flex;
    position: relative;
    width: 100%;
    margin: 0 auto;
}.stattitle_opener > div > div:first-child {
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards ease-out;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
}.stattitle_opener .statcourse_intro {
    max-width: 800px;
    position: relative;
    font-size: 40px;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
}.stattitle_opener .statcourse_intro::after {
    left: 0;
    bottom: -0.75rem;
    content: "";
    background: rgb(195,184,203);
    height: 4px;
    transform: scaleX(0);
    position: absolute;
    animation: expandLine 0.8s 0.6s forwards ease-out;
    transform-origin: left;
    width: 80px;
}.stattitle_opener p {
    line-height: 1.6;
    max-width: 650px;
    font-size: calc(16px * 1.2);
    padding-left: 20px;
    color: #000000;
    position: relative;
}.stattitle_opener p::before {
    content: "";
    background: rgb(160,148,167);
    opacity: 0.7;
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
}.stattitle_opener .statedu_intro {
    animation: fadeUp 0.8s 0.4s forwards ease-out;
    position: relative;
    transform: translateY(30px);
    margin-top: 2rem;
    opacity: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}.stattitle_opener .statdiff_block {
    transition: transform 0.5s ease;
    border-radius: 13px;
    height: 380px;
    position: relative;
    overflow: hidden;
}.stattitle_opener .statdiff_block:hover {
    transform: translateY(-5px);
}.stattitle_opener .statdiff_block::before {
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0, 0, 0, 0.5) 90%);
    position: absolute;
}.stattitle_opener .statdiff_block span {
    transform: translateY(10px);
    bottom: 0;
    z-index: 2;
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards ease-out;
    padding: 2rem;
    width: 100%;
    position: absolute;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    left: 0;
}.stattitle_opener .statdiff_block h3 {
    line-height: 1.5;
    font-size: 23px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-weight: 600;
    color: #ffffff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (min-width: 768px) {.stattitle_opener {
    padding: 8rem 4rem;
}.stattitle_opener > div {
    align-items: center;
    flex-direction: row;
}.stattitle_opener > div > div:first-child {
    flex: 1;
    padding-right: 2rem;
}.stattitle_opener .statedu_intro {
    flex: 1.2;
    margin-top: 0;
}.stattitle_opener .statdiff_block {
    height: 420px;
}
}

@media (max-width: 767px) {.stattitle_opener {
    padding: 4rem 1.5rem;
}.stattitle_opener .statcourse_intro {
    font-size: calc(40px * 0.8);
}.stattitle_opener p {
    font-size: 16px;
}.stattitle_opener .statdiff_block {
    height: 320px;
}.stattitle_opener .statdiff_block span {
    padding: 1.5rem;
}.stattitle_opener .statdiff_block h3 {
    font-size: calc(23px * 0.9);
}
}

@media (max-width: 480px) {.stattitle_opener {
    padding: 3rem 1rem;
}.stattitle_opener .statcourse_intro {
    font-size: calc(40px * 0.7);
}.stattitle_opener .statdiff_block {
    height: 280px;
}.stattitle_opener .statdiff_block span {
    padding: 1.25rem;
}.stattitle_opener .statdiff_block h3 {
    font-size: calc(23px * 0.8);
}}.statget_updates {
    overflow: hidden;
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(135deg, rgb(160,148,167,0.5), rgb(195,184,203));
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}.statget_updates::before {
    filter: blur(20px);
    height: 70%;
    transform: rotate(-15deg) translateZ(0);
    top: -10%;
    background: rgb(195,184,203,0.5);
    position: absolute;
    z-index: 0;
    content: "";
    width: 60%;
    right: -10%;
}.statget_updates::after {
    filter: blur(20px);
    transform: rotate(15deg) translateZ(0);
    z-index: 0;
    position: absolute;
    left: -10%;
    width: 60%;
    background: rgb(160,148,167,0.5);
    content: "";
    height: 70%;
    bottom: -10%;
}.statget_updates .container {
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}.statget_updates .statlearn_studio {
    transform: perspective(1000px) rotateY(-2deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 
                0 1px 0 rgba(255,255,255,0.2) inset,
                0 -1px 0 rgba(0,0,0,0.05) inset;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 3rem;
    border-left: 4px solid rgb(195,184,203);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}.statget_updates .statlearn_studio:hover {
    transform: perspective(1000px) rotateY(0deg);
}.statget_updates h3 {
    color: #000000;
    font-size: calc(21px * 1.1);
    transform: translateZ(0);
    line-height: 1.4;
    font-family: Arial, sans-serif;
    position: relative;
    margin-bottom: 2rem;
    font-weight: 600;
}.statget_updates h3::after {
    height: 3px;
    bottom: -10px;
    width: 60px;
    background: linear-gradient(90deg, rgb(195,184,203), rgb(160,148,167));
    content: "";
    left: 0;
    position: absolute;
    transition: width 0.3s ease-out;
}.statget_updates .statlearn_studio:hover h3::after {
    width: 100px;
}.statget_updates .input_holder {
    flex-direction: column;
    display: flex;
    margin-top: 1.5rem;
    gap: 1rem;
}.statget_updates .input_holder div {
    position: relative;
    flex: 1;
}.statget_updates input[type="email"] {
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
    background: #ffffff;
    width: 100%;
    padding: 1rem 1.5rem;
    color: #000000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
}.statget_updates input[type="email"]:focus {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05), 0 0 0 3px rgb(195,184,203,0.5);
    border-color: rgb(195,184,203);
    outline: none;
}.statget_updates input[type="email"]::placeholder {
    color: rgba(0,0,0,0.35);
    transition: opacity 0.3s;
}.statget_updates input[type="email"]:focus::placeholder {
    opacity: 0.5;
}.statget_updates .stataccess_classes {
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border: none;
    padding: 1rem 2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    background: linear-gradient(135deg, rgb(195,184,203), rgb(160,148,167));
    color: #ffffff;
}.statget_updates .stataccess_classes::before {
    background: linear-gradient(135deg, rgb(160,148,167), rgb(195,184,203));
    content: "";
    z-index: -1;
    transition: opacity 0.3s ease;
    width: 100%;
    opacity: 0;
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
}.statget_updates .stataccess_classes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}.statget_updates .stataccess_classes:hover::before {
    opacity: 1;
}.statget_updates .stataccess_classes:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {.statget_updates {
    padding: 6rem 3rem;
}.statget_updates .statlearn_studio {
    transform: perspective(1200px) rotateY(-3deg);
    padding: 4rem;
}.statget_updates h3 {
    max-width: 80%;
    font-size: 36px;
}.statget_updates .input_holder {
    margin-top: 2.5rem;
    flex-direction: row;
}.statget_updates input[type="email"] {
    font-size: calc(14px * 1.05);
    padding: 1.2rem 1.5rem;
}.statget_updates .stataccess_classes {
    align-self: flex-start;
    padding: 1.2rem 2.5rem;
}
}

@media (min-width: 992px) {.statget_updates .statlearn_studio {
    transform: perspective(1500px) rotateY(-4deg);
    max-width: 90%;
    margin: 0 auto;
}.statget_updates h3 {
    max-width: 70%;
}
}

@media (max-width: 767px) {.statget_updates {
    padding: 3rem 1.5rem;
}.statget_updates .statlearn_studio {
    transform: perspective(800px) rotateY(-1deg);
    padding: 2rem;
}.statget_updates h3 {
    font-size: calc(21px * 1.2);
}.statget_updates .stataccess_classes {
    margin-top: 0.5rem;
    width: 100%;
}
}

@media (max-width: 480px) {.statget_updates {
    padding: 2.5rem 1rem;
}.statget_updates .statlearn_studio {
    padding: 1.5rem;
    transform: none;
}.statget_updates h3 {
    font-size: 21px;
}}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(195,184,203,0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

.statget_updates input[type="email"]:focus {
    animation: pulse 1.5s infinite;
}.statthanksNexus {
    background: linear-gradient(135deg, rgb(231,220,240) 0%, rgb(195,184,203,0.5) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}.statthanksNexus::before {
    position: absolute;
    z-index: 1;
    animation: floatElement 15s ease-in-out infinite;
    transform: rotate(-15deg) skewX(10deg);
    content: "";
    width: 40%;
    background: linear-gradient(220deg, rgb(160,148,167,0.5) 20%, transparent 80%);
    filter: blur(60px);
    height: 70%;
    top: -10%;
    right: -5%;
}.statthanksNexus::after {
    width: 40%;
    animation: floatElement 15s ease-in-out infinite reverse;
    position: absolute;
    background: linear-gradient(220deg, rgb(195,184,203,0.5) 20%, transparent 80%);
    left: -5%;
    z-index: 1;
    content: "";
    bottom: -10%;
    filter: blur(60px);
    transform: rotate(15deg) skewX(-10deg);
    height: 70%;
}.statthanksNexus .container {
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
}.statthanksNexus h2 {
    letter-spacing: -0.01em;
    transform: translateY(20px);
    font-weight: 700;
    margin-right: auto;
    font-size: 32px;
    position: relative;
    line-height: 1.4;
    opacity: 0;
    animation: slideUp 0.8s forwards 0.2s ease-out;
    text-align: center;
    color: #000000;
    max-width: 800px;
    margin-left: auto;
    margin-bottom: 40px;
}.statthanksNexus h2::after {
    border-radius: 10px;
    width: 80px;
    left: 50%;
    bottom: -15px;
    position: absolute;
    height: 3px;
    content: "";
    background: rgb(195,184,203);
    transform: translateX(-50%);
}.statthanksNexus .statlearn_studio {
    padding: 50px;
    position: relative;
    animation: slideUp 0.8s forwards 0.5s ease-out;
    border-radius: 27px;
    transform: translateY(30px);
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 5px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
}.statthanksNexus .statlearn_studio::before {
    content: "";
    height: 6px;
    background: linear-gradient(90deg, rgb(195,184,203) 0%, rgb(160,148,167) 100%);
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
}.statthanksNexus .statlearn_studio::after {
    content: "";
    opacity: 0.2;
    height: 160px;
    right: 20px;
    width: 160px;
    border-radius: 50%;
    top: 20px;
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgb(195,184,203,0.5) 0%, transparent 70%);
    position: absolute;
}.statthanksNexus ul {
    margin: 0;
    position: relative;
    padding: 0;
    list-style: none;
}.statthanksNexus li {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    gap: 20px;
}.statthanksNexus li::before {
    position: absolute;
    background: rgb(195,184,203);
    width: 12px;
    height: 12px;
    left: -30px;
    content: "";
    border-radius: 50%;
    animation: pulse 2s infinite;
    top: 8px;
}.statthanksNexus span {
    text-align: left;
    position: relative;
    border-left: 3px solid rgb(195,184,203,0.5);
    font-size: calc(13px * 1.1);
    color: #000000;
    font-family: Arial, sans-serif;
    padding-left: 15px;
    line-height: 1.8;
}

@keyframes slideUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(rgb(195,184,203), 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(rgb(195,184,203), 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(rgb(195,184,203), 0);
  }
}

@keyframes floatElement {
  0% {
    transform: rotate(-15deg) skewX(10deg) translateY(0);
  }
  50% {
    transform: rotate(-15deg) skewX(10deg) translateY(-20px);
  }
  100% {
    transform: rotate(-15deg) skewX(10deg) translateY(0);
  }
}

@media (max-width: 991px) {.statthanksNexus {
    padding: 80px 0;
}.statthanksNexus h2 {
    font-size: calc(32px * 0.85);
}.statthanksNexus .statlearn_studio {
    padding: 40px 30px;
}.statthanksNexus li::before {
    left: -20px;
}
}

@media (max-width: 767px) {.statthanksNexus {
    padding: 60px 0;
}.statthanksNexus h2 {
    margin-bottom: 30px;
    font-size: calc(32px * 0.7);
}.statthanksNexus h2::after {
    bottom: -10px;
    width: 60px;
}.statthanksNexus .statlearn_studio {
    padding: 30px 20px;
}.statthanksNexus li::before {
    display: none;
}.statthanksNexus span {
    font-size: 13px;
    line-height: 1.6;
}
}

@media (max-width: 480px) {.statthanksNexus {
    padding: 40px 0;
}.statthanksNexus h2 {
    font-size: calc(32px * 0.6);
    margin-bottom: 25px;
}.statthanksNexus .statlearn_studio {
    padding: 25px 15px;
}.statthanksNexus span {
    border-left: 2px solid rgb(195,184,203,0.5);
    padding-left: 10px;
}}.statcontact_form_box {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #ffffff;
}.statcontact_form_box::before {
    content: "";
    left: 0;
    background-size: 20px 20px;
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%) -10px 0,
                linear-gradient(225deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%) -10px 0,
                linear-gradient(315deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%),
                linear-gradient(45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%);
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
}.statcontact_form_box .container {
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    position: relative;
    max-width: 1200px;
}.statcontact_form_box h2 {
    font-size: 33px;
    margin-bottom: 50px;
    text-align: left;
    border-left: 5px solid rgb(195,184,203);
    font-weight: 700;
    padding-left: 20px;
    position: relative;
    color: #000000;
}.statcontact_form_box .statinquiry_message {
    display: flex;
    border-radius: 26px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    flex-direction: row-reverse;
    background: #ffffff;
    overflow: hidden;
}.statcontact_form_box .statimg_display_box {
    position: relative;
    min-height: 500px;
    flex: 0 0 40%;
}.statcontact_form_box .statimg_display_box::before {
    position: absolute;
    top: 0;
    mix-blend-mode: multiply;
    background: rgb(195,184,203,0.5);
    content: "";
    width: 100%;
    z-index: 1;
    height: 100%;
    left: 0;
}.statcontact_form_box .stathelp_grid {
    padding: 60px;
    position: relative;
    flex: 0 0 60%;
}.statcontact_form_box .stathelp_grid::after {
    top: 0;
    z-index: -1;
    height: 150px;
    position: absolute;
    content: "";
    width: 150px;
    background: rgb(231,220,240);
    right: 0;
    border-radius: 0 0 0 100%;
}.statcontact_form_box #contact {
    flex-direction: column;
    gap: 30px;
    display: flex;
}.statcontact_form_box h3 {
    font-size: 18px;
    color: #000000;
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
}.statcontact_form_box h3::after {
    background: rgb(195,184,203);
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    content: "";
    width: 40px;
}.statcontact_form_box input[type="text"] {
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    background: rgb(231,220,240);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
    font-size: 13px;
    color: #000000;
    border-radius: 10px;
    padding: 18px 20px;
}.statcontact_form_box input[type="text"]:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgb(195,184,203,0.5), inset 0 2px 4px rgba(0, 0, 0, 0.03);
}.statcontact_form_box input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.6;
}.statcontact_form_box .statquery_card {
    gap: 12px;
    align-items: center;
    margin-top: 5px;
    display: flex;
}.statcontact_form_box .statquery_card input[type="checkbox"] {
    appearance: none;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid rgb(231,220,240);
    width: 22px;
    position: relative;
    height: 22px;
    transition: all 0.2s ease;
}.statcontact_form_box .statquery_card input[type="checkbox"]:checked {
    border-color: rgb(195,184,203);
    background: rgb(195,184,203);
}.statcontact_form_box .statquery_card input[type="checkbox"]:checked::after {
    transform: rotate(45deg);
    left: 7px;
    content: "";
    height: 11px;
    position: absolute;
    top: 3px;
    width: 6px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
}.statcontact_form_box .statquery_card label {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
}.statcontact_form_box .statquery_card a {
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: rgb(195,184,203);
}.statcontact_form_box .statquery_card a:hover {
    color: rgb(160,148,167);
}.statcontact_form_box .statquery_card a::after {
    bottom: -2px;
    height: 1px;
    left: 0;
    transition: all 0.3s ease;
    width: 100%;
    content: "";
    position: absolute;
    background: rgb(195,184,203);
}.statcontact_form_box .statquery_card a:hover::after {
    background: rgb(160,148,167);
}.statcontact_form_box .statsupport_inquiry {
    font-weight: 600;
    font-size: 15px;
    padding: 18px 40px;
    background: rgb(195,184,203);
    transition: all 0.3s ease;
    margin-top: 20px;
    color: #ffffff;
    border-radius: 26px;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgb(195,184,203,0.5);
}.statcontact_form_box .statsupport_inquiry:hover {
    background: rgb(160,148,167);
    box-shadow: 0 7px 20px rgb(160,148,167,0.5);
    transform: translateY(-2px);
}.statcontact_form_box svg {
    height: 20px;
    fill: rgb(195,184,203);
    transition: all 0.3s ease;
    width: 20px;
}.statcontact_form_box svg path {
    transition: all 0.3s ease;
    fill: rgb(195,184,203);
}.statcontact_form_box svg:hover {
    fill: rgb(160,148,167);
}.statcontact_form_box svg:hover path {
    fill: rgb(160,148,167);
}

@media (max-width: 992px) {.statcontact_form_box .statinquiry_message {
    flex-direction: column;
}.statcontact_form_box .statimg_display_box {
    flex: 0 0 auto;
    order: 1;
    min-height: 300px;
}.statcontact_form_box .stathelp_grid {
    padding: 50px 40px;
    flex: 0 0 auto;
    order: 2;
}.statcontact_form_box h2 {
    margin-bottom: 40px;
}
}

@media (max-width: 768px) {.statcontact_form_box {
    padding: 60px 0;
}.statcontact_form_box h2 {
    margin-bottom: 30px;
    font-size: calc(33px - 4px);
}.statcontact_form_box .stathelp_grid {
    padding: 40px 30px;
}.statcontact_form_box #contact {
    gap: 25px;
}.statcontact_form_box .statimg_display_box {
    min-height: 250px;
}
}

@media (max-width: 576px) {.statcontact_form_box {
    padding: 40px 0;
}.statcontact_form_box .container {
    padding: 0 15px;
}.statcontact_form_box h2 {
    padding-left: 15px;
    margin-bottom: 25px;
    font-size: calc(33px - 6px);
}.statcontact_form_box .stathelp_grid {
    padding: 30px 20px;
}.statcontact_form_box #contact {
    gap: 20px;
}.statcontact_form_box input[type="text"] {
    padding: 15px;
}.statcontact_form_box .statsupport_inquiry {
    width: 100%;
    padding: 15px 20px;
}.statcontact_form_box .statimg_display_box {
    min-height: 200px;
}}header .statmain_start {
    background: linear-gradient(120deg, rgb(195,184,203) 0%, rgb(160,148,167,0.5) 100%);
    justify-content: space-between;
    padding: 1.5rem 0;
    overflow: visible;
    position: relative;
    z-index: 99;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}header .statmain_start::before {
    content: "";
    z-index: -1;
    background: radial-gradient(circle at 70% 30%, rgb(160,148,167,0.5) 0%, transparent 60%);
    height: 100%;
    top: 0;
    width: 100%;
    left: 0;
    position: absolute;
}header .statmain_start .statheader_primary {
    margin-left: calc((100vw - 100%) / 2);
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
    transform: translateY(-5px);
}header .statmain_start .statheader_primary:hover {
    transform: translateY(0) scale(1.05);
}header .statmain_start .statheader_primary .statnav_know {
    padding: 0.5rem 1rem;
    display: block;
    position: relative;
}header .statmain_start .statheader_primary .statnav_know::before {
    z-index: -1;
    position: absolute;
    top: -10px;
    background: rgba(0, 0, 0, 0.5);
    height: calc(100% + 20px);
    content: "";
    width: calc(100% + 40px);
    left: -20px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}header .statmain_start .statheader_primary .statnav_know svg {
    filter: drop-shadow(0 0 8px #ffffff);
    height: 2.8rem;
    width: auto;
}header .statmain_start .stathead_bar {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    width: 80vw;
    position: relative;
    list-style: none;
    padding-right: calc((100vw - 100%) / 2);
    padding: 0;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    background: linear-gradient(90deg, transparent, rgb(195,184,203,0.5) 30%, rgba(0, 0, 0, 0.5) 100%);
}header .statmain_start .stathead_bar::before {
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}header .statmain_start .stathead_bar .statnav_lesson {
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    margin: 0;
}header .statmain_start .stathead_bar .statnav_lesson a {
    font-size: 16px;
    position: relative;
    text-decoration: none;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    transform-origin: center;
    transition: all 0.3s ease;
    color: #ffffff;
    display: block;
}header .statmain_start .stathead_bar .statnav_lesson a::after {
    left: 1.5rem;
    transition: width 0.3s ease;
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: rgb(160,148,167);
    bottom: 0.8rem;
}header .statmain_start .stathead_bar .statnav_lesson a:hover {
    color: rgb(160,148,167);
    transform: translateZ(10px);
}header .statmain_start .stathead_bar .statnav_lesson a:hover::after {
    width: calc(100% - 3rem);
}

@media screen and (max-width: 991px) {header .statmain_start {
    align-items: center;
    padding: 1rem 0;
    flex-direction: column;
}header .statmain_start .statheader_primary {
    margin-bottom: 1rem;
    margin-left: 0;
}header .statmain_start .stathead_bar {
    flex-wrap: wrap;
    clip-path: none;
    justify-content: center;
    width: 100%;
    background: rgb(195,184,203,0.5);
    padding-right: 0;
}header .statmain_start .stathead_bar .statnav_lesson a {
    padding: 0.8rem 1rem;
}header .statmain_start .stathead_bar .statnav_lesson a::after {
    bottom: 0.4rem;
    left: 1rem;
}header .statmain_start .stathead_bar .statnav_lesson a:hover::after {
    width: calc(100% - 2rem);
}
}

@media screen and (max-width: 767px) {header .statmain_start .stathead_bar {
    padding: 0.5rem 0;
}header .statmain_start .stathead_bar .statnav_lesson {
    width: 50%;
}header .statmain_start .stathead_bar .statnav_lesson a {
    text-align: center;
    padding: 0.6rem 0.8rem;
    font-size: calc(16px - 2px);
}header .statmain_start .stathead_bar .statnav_lesson a::after {
    display: none;
}}.statpricing_section {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(231,220,240) 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
}.statpricing_section::before {
    width: 100%;
    height: 100%;
    left: 0;
    background: linear-gradient(45deg, rgb(195,184,203,0.5) 0%, transparent 40%);
    top: 0;
    z-index: 1;
    content: "";
    position: absolute;
}.statpricing_section .container {
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.statpricing_section .statpricing_tiers {
    flex-direction: column;
    display: flex;
}.statpricing_section .statfee_options {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    order: 1;
    margin-bottom: 3rem;
    max-width: 800px;
}.statpricing_section .statfee_options h2 {
    font-size: 31px;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: #000000;
}.statpricing_section .statfee_options h2::after {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    background: rgb(195,184,203);
    bottom: -10px;
    width: 80px;
    content: "";
    height: 3px;
}.statpricing_section .statpayment_pricing {
    color: #000000;
    margin: 0 auto;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}.statpricing_section .statpremium_grid {
    order: 2;
    margin-top: 2rem;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}.statpricing_section .statprice_opts {
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    background: #ffffff;
    display: block;
    overflow: hidden;
    height: 100%;
    text-decoration: none;
}.statpricing_section .statprice_opts:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) scale(1.02);
}.statpricing_section .statpromo_rates {
    flex-direction: column;
    height: 100%;
    display: flex;
}.statpricing_section .statrate_choices {
    display: flex;
    position: relative;
    word-break: break-word;
    overflow-wrap: break-word;
    z-index: 1;
    padding: 2rem;
    flex-grow: 1;
    flex-direction: column;
}.statpricing_section .statrate_choices::before {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, #ffffff 100%);
    opacity: 0.7;
}.statpricing_section .statrate_choices h3 {
    color: #000000;
    font-size: calc(24px * 1.2);
    font-weight: 700;
    padding-bottom: 0.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}.statpricing_section .statrate_choices h3::after {
    background: rgb(160,148,167);
    position: absolute;
    transition: width 0.3s ease;
    content: "";
    left: 0;
    width: 40px;
    bottom: 0;
    height: 2px;
}.statpricing_section .statprice_opts:hover .statrate_choices h3::after {
    width: 80px;
}.statpricing_section .statdeal_board {
    margin-bottom: 1.5rem;
    font-size: calc(24px * 1.5);
    font-weight: 700;
    display: inline-block;
    color: rgb(195,184,203);
    position: relative;
}.statpricing_section .statdeal_board::before {
    width: 0;
    position: absolute;
    bottom: -5px;
    background: rgb(195,184,203);
    content: "";
    transition: width 0.3s ease;
    height: 2px;
    left: 0;
}.statpricing_section .statprice_opts:hover .statdeal_board::before {
    width: 100%;
}.statpricing_section .statrate_choices p {
    overflow-wrap: break-word;
    line-height: 1.6;
    font-size: 18px;
    color: #000000;
    margin-top: auto;
    word-break: break-word;
}.statpricing_section .statimg_display_box {
    overflow: hidden;
    height: 200px;
    position: relative;
    transition: transform 0.5s ease;
}.statpricing_section .statimg_display_box::after {
    height: 100%;
    top: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
}.statpricing_section .statprice_opts:hover .statimg_display_box {
    transform: scale(1.05);
}.statpricing_section .statprice_opts:nth-child(odd) .statpromo_rates {
    flex-direction: column-reverse;
}.statpricing_section .statprice_opts:nth-child(3n+1) {
    border-top: 3px solid rgb(195,184,203);
}.statpricing_section .statprice_opts:nth-child(3n+2) {
    border-top: 3px solid rgb(160,148,167);
}.statpricing_section .statprice_opts:nth-child(3n+3) {
    border-top: 3px solid #000000;
}

@media (min-width: 768px) {.statpricing_section .statpricing_tiers {
    gap: 4rem;
    flex-direction: row;
    align-items: center;
}.statpricing_section .statfee_options {
    flex: 0 0 30%;
    margin-bottom: 0;
    order: 2;
    text-align: left;
}.statpricing_section .statfee_options h2 {
    text-align: left;
}.statpricing_section .statfee_options h2::after {
    transform: none;
    left: 0;
}.statpricing_section .statpayment_pricing {
    text-align: left;
    margin: 0;
}.statpricing_section .statpremium_grid {
    order: 1;
    grid-template-columns: repeat(2, 1fr);
    flex: 0 0 65%;
}
}

@media (min-width: 992px) {.statpricing_section .statpremium_grid {
    grid-template-columns: repeat(2, 1fr);
}.statpricing_section .statprice_opts:nth-child(4n+1) {
    transform: translateY(20px);
}.statpricing_section .statprice_opts:nth-child(4n+3) {
    transform: translateY(-20px);
}.statpricing_section .statprice_opts:hover {
    transform: translateY(0) scale(1.02);
}
}

@media (max-width: 767px) {.statpricing_section {
    padding: 4rem 0;
}.statpricing_section .statrate_choices {
    padding: 1.5rem;
}.statpricing_section .statrate_choices h3 {
    font-size: 24px;
}.statpricing_section .statdeal_board {
    font-size: 24px;
}.statpricing_section .statrate_choices p {
    overflow-y: auto;
    font-size: calc(18px * 0.9);
    line-height: 1.5;
    max-height: 150px;
}.statpricing_section .statimg_display_box {
    height: 150px;
}
}

@media (max-width: 480px) {.statpricing_section .statpremium_grid {
    grid-template-columns: 1fr;
}.statpricing_section .statfee_options h2 {
    font-size: calc(31px * 0.8);
}.statpricing_section .statpayment_pricing {
    font-size: calc(18px * 0.9);
}.statpricing_section .statrate_choices p {
    max-height: 120px;
}}.statcourse_features {
    position: relative;
    background: linear-gradient(150deg, rgb(195,184,203,0.5) 0%, rgb(231,220,240) 50%, rgb(160,148,167,0.5) 100%);
    overflow: hidden;
    padding: 7rem 0;
}.statcourse_features::before {
    transform-origin: center;
    content: "";
    z-index: 0;
    height: 150%;
    top: -25%;
    opacity: 0.6;
    background: 
        radial-gradient(ellipse at 30% 40%, rgb(195,184,203,0.5) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgb(160,148,167,0.5) 0%, transparent 50%);
    filter: blur(60px);
    left: -25%;
    animation: pulseBackground 20s ease-in-out infinite alternate;
    position: absolute;
    width: 150%;
}.statcourse_features::after {
    height: 100%;
    animation: gridMove 30s linear infinite;
    content: "";
    background-size: 20px 20px;
    position: absolute;
    width: 100%;
    left: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    top: 0;
    z-index: 1;
}.statcourse_features .container {
    z-index: 2;
    position: relative;
}.statcourse_features .statlearn_studio {
    gap: 15px;
    min-height: 550px;
    position: relative;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, minmax(30px, auto));
    display: grid;
}.statcourse_features .statnew_skills {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    grid-column: 1 / 8;
    background: rgba(255, 255, 255, 0.07);
    position: relative;
    padding: 2.5rem;
    grid-row: 3 / 11;
    backdrop-filter: blur(10px);
    transform: translateZ(0);
    border-radius: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.05),
        0 5px 10px rgba(0, 0, 0, 0.03);
    z-index: 5;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}.statcourse_features .statnew_skills::before {
    left: 0;
    opacity: 0.15;
    z-index: -1;
    border-radius: 23px;
    content: "";
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background: 
        radial-gradient(circle at 90% 10%, rgb(195,184,203,0.5) 0%, transparent 80%),
        radial-gradient(circle at 10% 90%, rgb(160,148,167,0.5) 0%, transparent 80%);
}.statcourse_features .statnew_skills::after {
    position: absolute;
    content: "";
    background: linear-gradient(to right, rgb(195,184,203) 0%, transparent 100%);
    left: 50%;
    height: 1px;
    width: 80%;
    filter: blur(1px);
    transform: translateX(-50%);
    bottom: -10px;
}.statcourse_features .statheader_primary {
    margin-bottom: 1.5rem;
    width: 110px;
    transform-style: preserve-3d;
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transition: all 0.5s ease;
    height: 110px;
}.statcourse_features .statheader_primary::before {
    background: conic-gradient(
        from 0deg, 
        rgb(195,184,203) 0%, 
        rgb(160,148,167) 50%, 
        rgb(195,184,203) 100%
    );
    animation: rotateConic 10s linear infinite;
    position: absolute;
    border-radius: 33% 67% 67% 33% / 33% 33% 67% 67%;
    z-index: -1;
    content: "";
    inset: -4px;
}.statcourse_features .statheader_primary::after {
    position: absolute;
    content: "";
    z-index: -1;
    inset: 6px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgb(231,220,240);
}.statcourse_features .statheader_primary svg {
    height: 60px;
    transform: translate(-50%, -50%);
    top: 50%;
    animation: floatLogo 6s ease-in-out infinite;
    position: absolute;
    width: 60px;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgb(195,184,203,0.5));
    left: 50%;
}.statcourse_features .statheader_primary svg path {
    fill: rgb(195,184,203);
    transition: fill 0.3s ease;
}.statcourse_features h3 {
    text-shadow: 0 0 20px rgb(195,184,203,0.5);
    padding-right: 2rem;
    transform: perspective(1000px) rotateX(2deg);
    transform-origin: left bottom;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    font-size: 36px;
}.statcourse_features h3::before {
    transform-origin: left;
    height: 3px;
    bottom: -8px;
    background: rgb(195,184,203);
    width: 60px;
    position: absolute;
    left: 0;
    content: "";
    animation: lineExpand 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}.statcourse_features p {
    font-size: 17px;
    max-width: 100%;
    line-height: 1.8;
    color: #ffffff;
    transform: perspective(1000px) rotateX(1deg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transform-origin: left bottom;
    margin-bottom: 0;
    position: relative;
}.statcourse_features .statimg_display_box {
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.1),
        10px 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    animation: morphShape 20s ease-in-out infinite alternate;
    grid-column: 5 / 13;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    grid-row: 1 / 13;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    height: 500px;
    z-index: 4;
}.statcourse_features .statimg_display_box::before {
    background: 
        linear-gradient(135deg, transparent 0%, rgb(195,184,203,0.5) 100%),
        radial-gradient(circle at 30% 70%, rgb(160,148,167,0.5) 0%, transparent 70%);
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: overlay;
    inset: 0;
    position: absolute;
    content: "";
}.statcourse_features .statimg_display_box::after {
    position: absolute;
    width: 150%;
    animation: pulseOverlay 15s ease-in-out infinite;
    left: -25%;
    top: -25%;
    background: radial-gradient(
        circle at center,
        transparent 30%,
        rgb(231,220,240) 100%
    );
    z-index: 1;
    mix-blend-mode: multiply;
    height: 150%;
    content: "";
    opacity: 0.2;
}.statcourse_features .statlearn_studio:hover .statimg_display_box {
    box-shadow: 
        30px 30px 80px rgba(0, 0, 0, 0.15),
        15px 15px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-8deg) rotateX(8deg) scale(1.03);
}.statcourse_features .statlearn_studio:hover .statnew_skills {
    box-shadow: 
        0 25px 35px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateZ(20px) translateX(10px);
}.statcourse_features .statlearn_studio:hover .statheader_primary {
    transform: rotate(5deg) scale(1.05);
}.statcourse_features .statlearn_studio:hover .statheader_primary svg path {
    fill: rgb(160,148,167);
}

@keyframes pulseBackground {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@keyframes rotateConic {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatLogo {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -55%);
    }
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes morphShape {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
    }
    50% {
        border-radius: 60% 40% 40% 60% / 50% 60% 40% 50%;
    }
    75% {
        border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes pulseOverlay {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@media (max-width: 1200px) {.statcourse_features .statlearn_studio {
    min-height: 500px;
}.statcourse_features .statnew_skills {
    grid-column: 1 / 8;
    padding: 2.2rem;
}.statcourse_features h3 {
    font-size: calc(36px * 0.9);
}.statcourse_features .statheader_primary {
    width: 100px;
    height: 100px;
}.statcourse_features .statheader_primary svg {
    width: 55px;
    height: 55px;
}
}

@media (max-width: 992px) {.statcourse_features {
    padding: 5rem 0;
}.statcourse_features .statlearn_studio {
    min-height: auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    gap: 10px;
}.statcourse_features .statnew_skills {
    padding: 2.5rem;
    grid-column: 1 / -1;
    z-index: 5;
    margin-top: -80px;
    grid-row: 2 / 3;
}.statcourse_features .statimg_display_box {
    grid-column: 1 / -1;
    height: 350px;
    grid-row: 1 / 2;
    border-radius: 40% 60% 60% 40% / 30% 40% 60% 70%;
}.statcourse_features .statheader_primary {
    margin-left: auto;
    margin-right: auto;
}.statcourse_features h3 {
    padding-right: 0;
    text-align: center;
}.statcourse_features h3::before {
    left: 50%;
    animation: lineCenterExpand 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform: translateX(-50%) scaleX(0);
}.statcourse_features p {
    text-align: center;
}.statcourse_features .statlearn_studio:hover .statimg_display_box {
    transform: perspective(1000px) rotateX(-5deg) scale(1.03);
}.statcourse_features .statlearn_studio:hover .statnew_skills {
    transform: translateZ(10px) translateY(-15px);
}
}

@keyframes lineCenterExpand {
    0% {
        transform: translateX(-50%) scaleX(0);
    }
    100% {
        transform: translateX(-50%) scaleX(1);
    }
}

@media (max-width: 768px) {.statcourse_features {
    padding: 4rem 0;
}.statcourse_features .statimg_display_box {
    height: 300px;
}.statcourse_features .statnew_skills {
    padding: 2rem;
    margin-top: -60px;
}.statcourse_features .statheader_primary {
    height: 90px;
    width: 90px;
    margin-bottom: 1.3rem;
}.statcourse_features .statheader_primary svg {
    height: 50px;
    width: 50px;
}.statcourse_features h3 {
    font-size: calc(36px * 0.8);
    margin-bottom: 1.3rem;
}.statcourse_features p {
    font-size: calc(17px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 576px) {.statcourse_features {
    padding: 3rem 0;
}.statcourse_features .statimg_display_box {
    border-radius: 30% 70% 70% 30% / 30% 40% 60% 70%;
    height: 250px;
}.statcourse_features .statnew_skills {
    margin-top: -50px;
    padding: 1.8rem 1.5rem;
}.statcourse_features .statheader_primary {
    width: 80px;
    height: 80px;
    margin-bottom: 1.2rem;
}.statcourse_features .statheader_primary svg {
    width: 45px;
    height: 45px;
}.statcourse_features h3 {
    margin-bottom: 1.2rem;
    font-size: calc(36px * 0.7);
}.statcourse_features h3::before {
    width: 50px;
    height: 2px;
}.statcourse_features p {
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}}footer {
    position: relative;
    width: 100%;
}.stataward_show {
    color: #ffffff;
    font-family: Arial, sans-serif;
    background-color: rgb(195,184,203);
    padding: 80px 0 30px;
    position: relative;
}.stataward_show::before {
    content: "";
    background-color: rgb(195,184,203);
    width: 60%;
    position: absolute;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    right: 0;
    top: 0;
    height: 100%;
    z-index: 0;
}footer .stataward_show::after {
    height: 200px;
    right: 15%;
    width: 200px;
    position: absolute;
    opacity: 0.3;
    content: "";
    background: radial-gradient(circle, rgb(195,184,203), transparent 70%);
    border-radius: 50%;
    top: 50px;
}footer .statsustain_cta {
    position: relative;
    z-index: 1;
}footer .statcontact_help {
    justify-content: flex-start;
    margin-bottom: 60px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}footer .info_item {
    transition: all 0.3s ease;
    margin-bottom: 10px;
    transform: skewX(-5deg);
    flex: 0 1 auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    margin-right: 10px;
    padding: 15px 25px;
}footer .info_item:hover {
    transform: skewX(-5deg) translateY(-5px);
    background-color: rgb(195,184,203);
}footer .info_item svg {
    transform: skewX(5deg);
    vertical-align: middle;
    width: 20px;
    fill: #ffffff;
    margin-right: 10px;
    height: 20px;
}footer .info_item p,
footer .info_item a {
    color: #ffffff;
    vertical-align: middle;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    transform: skewX(5deg);
}footer .text_main_holder {
    display: grid;
    gap: 40px;
    position: relative;
    grid-template-columns: 1fr;
}footer .statheader_primary {
    padding-left: 20px;
    position: relative;
}footer .statheader_primary::before {
    position: absolute;
    background-color: rgb(195,184,203);
    content: "";
    left: 0;
    height: 100%;
    top: 0;
    width: 5px;
}footer .statheader_primary svg {
    filter: brightness(0) invert(1);
    width: auto;
    margin-bottom: 20px;
    height: 45px;
}footer .statsite_map {
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
    font-size: 15px;
    line-height: 1.6;
}footer .stathead_bar {
    position: relative;
}footer .stathead_bar h5 {
    font-size: 24px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    padding-bottom: 10px;
    display: inline-block;
    color: #ffffff;
}footer .stathead_bar h5::after {
    background-color: rgb(195,184,203);
    content: "";
    width: 50px;
    bottom: 0;
    height: 3px;
    left: 0;
    position: absolute;
}footer .statheader_pro {
    margin-bottom: 25px;
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}footer .statheader_pro a {
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 0;
    position: relative;
}footer .statheader_pro a::before {
    left: -20px;
    opacity: 0;
    color: rgb(195,184,203);
    content: "→";
    transition: all 0.3s ease;
    position: absolute;
}footer .statheader_pro a:hover {
    color: rgb(195,184,203);
    padding-left: 20px;
}footer .statheader_pro a:hover::before {
    left: 0;
    opacity: 1;
}footer .subscribe_holder {
    border-left: 5px solid rgb(195,184,203);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 13px;
    position: relative;
}footer .subscribe_holder::before {
    content: "";
    z-index: -1;
    height: 100px;
    position: absolute;
    top: -20px;
    width: 100px;
    right: -20px;
    opacity: 0.2;
    border-radius: 50%;
    background-color: rgb(195,184,203);
}footer .subscribe_holder h5 {
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
}footer .subscribe_holder p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}footer .input_holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
}footer .input_holder input[type="email"] {
    transition: all 0.3s ease;
    border-radius: 10px;
    border: none;
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    color: #ffffff;
}footer .input_holder input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgb(195,184,203);
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}footer .stataccess_classes {
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    background-color: rgb(195,184,203);
    font-weight: 600;
}footer .stataccess_classes:hover {
    background-color: rgb(160,148,167);
    transform: translateX(5px);
}footer .statwhatsapp_grp {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    position: relative;
}footer .statcareer_help {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .statheader_pro {
    grid-template-columns: repeat(2, 1fr);
}footer .input_holder {
    flex-direction: row;
}footer .stataccess_classes {
    white-space: nowrap;
}footer .statheader_pro a {
    padding-right: 10px;
}
}

@media (max-width: 991px) {footer .stataward_show::before {
    width: 100%;
    opacity: 0.7;
    background-color: rgb(195,184,203);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
}

@media (max-width: 767px) {footer .stataward_show {
    padding: 60px 0 30px;
}footer .statcontact_help {
    margin-bottom: 40px;
    justify-content: center;
}footer .stathead_bar h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
}footer .statwhatsapp_grp {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .stataward_show {
    padding: 50px 0 20px;
}footer .info_item {
    margin-right: 0;
    width: 100%;
}footer .statheader_pro {
    grid-template-columns: 1fr;
}footer .subscribe_holder {
    padding: 20px;
}footer .input_holder input[type="email"],
    footer .stataccess_classes {
    padding: 12px 15px;
}}.statabout_this {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background-color: rgb(231,220,240);
}.statabout_this::before {
    z-index: 1;
    top: 0;
    background: radial-gradient(circle at top right, rgb(195,184,203,0.5) 0%, transparent 70%);
    height: 100%;
    content: "";
    position: absolute;
    width: 40%;
    opacity: 0.4;
    right: 0;
}.statabout_this::after {
    bottom: 0;
    opacity: 0.3;
    width: 30%;
    z-index: 1;
    content: "";
    height: 60%;
    left: 0;
    background: radial-gradient(circle at bottom left, rgb(160,148,167,0.5) 0%, transparent 70%);
    position: absolute;
}.statabout_this .container {
    z-index: 2;
    position: relative;
}.statabout_this .statlearn_studio {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-gap: 60px;
}.statabout_this h3 {
    color: #000000;
    position: relative;
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 50px;
    grid-column: 1 / -1;
    text-align: center;
}.statabout_this h3::after {
    position: absolute;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(to right, rgb(195,184,203), rgb(160,148,167));
    content: "";
    left: 50%;
}.statabout_this .statknowledge_experts {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(0);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    position: relative;
    border-radius: 12px;
    padding: 30px;
}.statabout_this .statknowledge_experts:hover {
    transform: translateX(10px);
}.statabout_this .statknowledge_experts span {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: rgb(195,184,203);
    margin-bottom: 15px;
}.statabout_this .statknowledge_experts span::after {
    bottom: -5px;
    content: "";
    background-color: rgb(160,148,167);
    left: 0;
    position: absolute;
    height: 2px;
    width: 40px;
}.statabout_this .statknowledge_experts p {
    margin-bottom: 25px;
    color: #000000;
    line-height: 1.7;
    font-size: 15px;
}.statabout_this .statimg_display_box {
    border-radius: 12px;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}.statabout_this .statimg_display_box::after {
    background: linear-gradient(to bottom, transparent 75%, rgba(0, 0, 0, 0.3));
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
}.statabout_this .statteam_profile {
    flex-direction: column;
    border-radius: 12px;
    background: #ffffff;
    padding: 30px;
    display: flex;
    transform: translateX(0);
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.statabout_this .statteam_profile:hover {
    transform: translateX(-10px);
}.statabout_this .statteam_profile p {
    font-size: 15px;
    position: relative;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-top: 15px;
}.statabout_this .statlearn_expert {
    height: 250px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}.statabout_this .statlearn_expert::after {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, transparent 75%, rgba(0, 0, 0, 0.3));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}.statabout_this .statknowledge_experts,
.statabout_this .statteam_profile {
    border-top: 4px solid rgb(195,184,203);
}.statabout_this .statteam_profile {
    border-color: rgb(160,148,167);
}.statabout_this .statlearn_studio::before {
    animation: rotate 30s linear infinite;
    opacity: 0.4;
    left: -100px;
    z-index: -1;
    position: absolute;
    top: -100px;
    content: "";
    border: 2px dotted rgb(195,184,203,0.5);
    height: 200px;
    width: 200px;
    border-radius: 50%;
}.statabout_this .statlearn_studio::after {
    position: absolute;
    z-index: -1;
    width: 150px;
    content: "";
    height: 150px;
    bottom: -75px;
    border: 2px dotted rgb(160,148,167,0.5);
    animation: rotate 20s linear infinite reverse;
    right: -75px;
    opacity: 0.4;
    border-radius: 50%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {.statabout_this {
    padding: 80px 0;
}.statabout_this .statlearn_studio {
    grid-gap: 40px;
}.statabout_this h3 {
    margin-bottom: 40px;
}
}

@media (max-width: 992px) {.statabout_this .statlearn_studio {
    grid-template-columns: 1fr;
    grid-gap: 50px;
}.statabout_this h3 {
    margin-bottom: 35px;
}.statabout_this .statknowledge_experts:hover,
    .statabout_this .statteam_profile:hover {
    transform: translateY(-10px);
}
}

@media (max-width: 768px) {.statabout_this {
    padding: 60px 0;
}.statabout_this h3 {
    font-size: calc(38px * 0.9);
}.statabout_this .statknowledge_experts,
    .statabout_this .statteam_profile {
    padding: 25px;
}.statabout_this .statknowledge_experts span {
    font-size: calc(22px * 0.9);
}.statabout_this .statimg_display_box,
    .statabout_this .statlearn_expert {
    height: 220px;
}
}

@media (max-width: 576px) {.statabout_this {
    padding: 50px 0;
}.statabout_this h3 {
    margin-bottom: 30px;
    font-size: calc(38px * 0.8);
}.statabout_this .statknowledge_experts,
    .statabout_this .statteam_profile {
    padding: 20px;
}.statabout_this .statknowledge_experts p,
    .statabout_this .statteam_profile p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: calc(15px * 0.95);
}.statabout_this .statimg_display_box,
    .statabout_this .statlearn_expert {
    height: 200px;
}}

.statabout_this .statknowledge_experts::before,
.statabout_this .statteam_profile::before {
    position: absolute;
    z-index: -1;
    background: rgb(195,184,203);
    right: 30px;
    transform: rotate(45deg);
    height: 20px;
    top: -10px;
    content: "";
    width: 20px;
}.statabout_this .statteam_profile::before {
    background: rgb(160,148,167);
}.statabout_this .statknowledge_experts,
.statabout_this .statteam_profile {
    overflow: hidden;
}.statabout_this .statknowledge_experts::after,
.statabout_this .statteam_profile::after {
    opacity: 0.2;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    height: 100px;
    top: -50%;
    position: absolute;
    width: 100px;
    right: -50%;
    content: "";
}

@media (min-width: 1400px) {.statabout_this .container {
    max-width: 1320px;
}}.statsecure_guard {
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    color: #000000;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}.statsecure_guard h1, .statsecure_guard h2, .statsecure_guard h3, .statsecure_guard h4, .statsecure_guard h5, .statsecure_guard h6 {
    margin-bottom: 20px;
    color: #000000;
    font-weight: 700;
}.statsecure_guard h1 {
    font-size: 44px;
    border-bottom: 2px solid rgb(195,184,203);
    margin-bottom: 30px;
    padding-bottom: 10px;
}.statsecure_guard h2 {
    padding-bottom: 8px;
    font-size: 35px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgb(160,148,167);
}.statsecure_guard h3 {
    padding-bottom: 6px;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 1px solid #000000;
}.statsecure_guard h4 {
    font-size: 1.25em;
    margin-bottom: 18px;
}.statsecure_guard h5 {
    margin-bottom: 16px;
    font-size: 24px;
}.statsecure_guard h6 {
    font-size: 19px;
    margin-bottom: 14px;
}.statsecure_guard ul, .statsecure_guard ol {
    color: #000000;
    margin-left: 20px;
    padding-left: 20px;
    list-style: none;
}.statsecure_guard ul li, .statsecure_guard ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    line-height: 1.6;
    font-size: 13px;
}.statsecure_guard ul li:before {
    font-size: 1.2em;
    content: '•';
    color: rgb(195,184,203);
    left: 0;
    position: absolute;
}.statsecure_guard p, .statsecure_guard span, .statsecure_guard div {
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 13px;
}
@media only screen and (max-width: 800px) {.statsecure_guard {
    padding: 20px 10px;
}.statsecure_guard h1 {
    font-size: calc(24px - 10%);
}.statsecure_guard h2 {
    font-size: calc(24px - 10%);
}.statsecure_guard p, .statsecure_guard span, .statsecure_guard div {
    font-size: calc(13px - 10%);
}}
.statsecure_guard a {
    border-bottom: 1px solid rgb(195,184,203);
    color: rgb(195,184,203);
    text-decoration: none;
}.statsecure_guard a:hover {
    border-bottom: 1px solid rgb(160,148,167);
    color: rgb(160,148,167);
}.statsecure_guard blockquote {
    background-color: rgb(231,220,240);
    border-left: 5px solid rgb(195,184,203);
    font-style: italic;
    padding: 15px 20px;
    margin: 20px 0;
    color: #000000;
}.statsecure_guard code {
    font-family: monospace;
    background-color: rgb(231,220,240);
    padding: 2px 6px;
    border-radius: 10px;
    color: #000000;
}.statsecure_guard hr {
    margin: 30px 0;
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.5);
}.statcookie_window_overlay {
    animation: fadeInUp 0.5s ease-out;
    position: fixed;
    border-top: 1px solid rgb(195,184,203);
    width: 100%;
    z-index: 1000;
    background-color: rgb(231,220,240);
    padding: 20px 0;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    bottom: 0;
}.statcookie_window_overlay .statcookies_terms {
    transform-origin: center;
    animation: logoScale 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    margin-right: 20px;
    flex-shrink: 0;
}.statcookie_window_overlay .statcookies_terms svg {
    fill: rgb(195,184,203);
    width: 60px;
    height: 60px;
}@keyframes logoScale {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.statcookie_window_overlay .stattrack_manage {
    flex-grow: 1;
}.statcookie_window_overlay .stattrack_manage h5 {
    color: rgb(195,184,203);
    margin-bottom: 6px;
    font-size: 19px;
}.statcookie_window_overlay .stattrack_manage p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: #000000;
}.statcookie_window_overlay .statdigital_cookies {
    color: #ffffff;
    font-size: 20px;
    margin-top: 20px;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    background-color: rgb(195,184,203);
    padding: 10px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-right: 15px;
}.statcookie_window_overlay .statdigital_cookies:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}.statcookie_window_overlay .statdigital_cookies:active {
    transform: translateY(1px);
    box-shadow: none;
}
@media (max-width: 768px) {.statcookie_window_overlay .statcookies_terms {
    margin-right: 0;
    margin-bottom: 15px;
}.statcookie_window_overlay .statdigital_cookies {
    text-align: center;
    width: 48%;
    margin-left: 0;
}}
#statcookiePolicyAlert {
    display: none;
}#statcookiePolicyAlert:checked ~ .statcookie_window_overlay {
    visibility: hidden;
    opacity: 0;
}.statcheck_it_out_now {
    perspective: 1000px;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(231,220,240) 0%, #ffffff 70%, rgb(195,184,203,0.5) 100%);
    overflow: hidden;
    transform-style: preserve-3d;
    position: relative;
}.statcheck_it_out_now::before {
    z-index: 0;
    width: 120%;
    height: 110%;
    transform: rotateZ(-5deg) translateZ(-10px);
    left: -10%;
    top: -5%;
    pointer-events: none;
    background: linear-gradient(45deg, rgb(195,184,203,0.5) 0%, transparent 60%);
    position: absolute;
    content: "";
}.statcheck_it_out_now::after {
    position: absolute;
    transform: translateZ(-5px);
    right: 0;
    content: "";
    background: linear-gradient(210deg, rgb(160,148,167,0.5) 0%, transparent 80%);
    z-index: 0;
    height: 60%;
    width: 40%;
    pointer-events: none;
    bottom: 0;
}.statcheck_it_out_now .container {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 1;
    backdrop-filter: blur(5px);
    margin: 0 auto;
    transform: translateZ(0);
    padding: 2rem;
    position: relative;
    max-width: 1200px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}.statcheck_it_out_now h2 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transform: translateZ(10px);
    max-width: 90%;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    color: #000000;
    font-size: 30px;
    line-height: 1.4;
}.statcheck_it_out_now h2::after {
    transform-origin: left center;
    transform: scaleX(1);
    content: "";
    height: 3px;
    bottom: -0.75rem;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(90deg, rgb(195,184,203) 0%, rgb(160,148,167) 100%);
    width: 8rem;
    position: absolute;
    left: 0;
}.statcheck_it_out_now .statlearn_studio {
    transform: translateZ(20px);
    margin-top: 2rem;
    gap: 2.5rem;
    display: flex;
    position: relative;
    align-items: center;
}.statcheck_it_out_now .statlearn_studio::before {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: calc(100% + 4rem);
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    content: "";
    transform: translateZ(-5px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    left: -2rem;
    position: absolute;
    z-index: -1;
    top: -1rem;
    height: calc(100% + 2rem);
}.statcheck_it_out_now svg {
    transform: translateZ(15px) rotate(-5deg);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 4rem;
    height: 4rem;
}.statcheck_it_out_now svg:hover {
    transform: translateZ(25px) rotate(0deg) scale(1.1);
}.statcheck_it_out_now svg path {
    transition: fill 0.3s ease-out;
    fill: rgb(195,184,203);
}.statcheck_it_out_now svg:hover path {
    fill: rgb(160,148,167);
}.statcheck_it_out_now .statlearn_studio div {
    position: relative;
    transform: translateZ(5px);
    flex-grow: 1;
}.statcheck_it_out_now .statsupport_inquiry {
    overflow: hidden;
    font-weight: 600;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    letter-spacing: 0.5px;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    font-family: Arial, sans-serif;
    transform: translateZ(5px);
    border: none;
    background: linear-gradient(135deg, rgb(195,184,203) 0%, rgb(160,148,167) 100%);
    position: relative;
    color: #ffffff;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    align-items: center;
    padding: 0.9rem 2.2rem;
    font-size: 15px;
}.statcheck_it_out_now .statsupport_inquiry::before {
    transition: left 0.7s ease;
    width: 100%;
    left: -100%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 100%;
    top: 0;
    position: absolute;
}.statcheck_it_out_now .statsupport_inquiry:hover {
    transform: translateZ(10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);
}.statcheck_it_out_now .statsupport_inquiry:hover::before {
    left: 100%;
}.statcheck_it_out_now .statsupport_inquiry::after {
    transform: translateX(-50%) scaleX(0.9);
    transition: all 0.4s ease;
    border-radius: 50%;
    bottom: 0;
    height: 10px;
    position: absolute;
    left: 50%;
    content: "";
    width: 90%;
    z-index: -1;
    filter: blur(5px);
    background: rgba(0, 0, 0, 0.1);
}.statcheck_it_out_now .statsupport_inquiry:hover::after {
    filter: blur(8px);
    width: 95%;
    transform: translateX(-50%) scaleX(0.95);
    height: 15px;
}

@media (max-width: 992px) {.statcheck_it_out_now {
    padding: 4rem 0;
}.statcheck_it_out_now .container {
    padding: 1.5rem;
}.statcheck_it_out_now h2 {
    max-width: 100%;
    font-size: calc(30px * 0.9);
}.statcheck_it_out_now .statlearn_studio {
    gap: 2rem;
}.statcheck_it_out_now svg {
    height: 3.5rem;
    width: 3.5rem;
}
}

@media (max-width: 768px) {.statcheck_it_out_now {
    padding: 3rem 0;
}.statcheck_it_out_now .container {
    padding: 1.25rem;
}.statcheck_it_out_now h2 {
    margin-bottom: 2rem;
    font-size: calc(30px * 0.8);
}.statcheck_it_out_now h2::after {
    width: 6rem;
}.statcheck_it_out_now .statlearn_studio {
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
}.statcheck_it_out_now svg {
    height: 3rem;
    width: 3rem;
}.statcheck_it_out_now .statsupport_inquiry {
    width: 100%;
    padding: 0.8rem 1.8rem;
}
}

@media (max-width: 576px) {.statcheck_it_out_now {
    padding: 2.5rem 0;
}.statcheck_it_out_now .container {
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}.statcheck_it_out_now h2 {
    font-size: calc(30px * 0.7);
    margin-bottom: 1.5rem;
}.statcheck_it_out_now h2::after {
    height: 2px;
    width: 5rem;
}.statcheck_it_out_now .statlearn_studio {
    margin-top: 1.5rem;
}.statcheck_it_out_now svg {
    width: 2.5rem;
    height: 2.5rem;
}.statcheck_it_out_now .statsupport_inquiry {
    padding: 0.7rem 1.5rem;
    font-size: calc(15px * 0.9);
}
}

@media (hover: none) {.statcheck_it_out_now .statsupport_inquiry:active {
    transform: translateZ(5px) scale(0.95);
}.statcheck_it_out_now svg:active {
    transform: translateZ(15px) scale(1.1);
}
}

@media (prefers-reduced-motion) {.statcheck_it_out_now .statsupport_inquiry::before,
  .statcheck_it_out_now .statsupport_inquiry:hover::before,
  .statcheck_it_out_now .statsupport_inquiry:hover,
  .statcheck_it_out_now svg:hover {
    transition: none;
    transform: none;
}}.statteaching_history {
    overflow: hidden;
    position: relative;
    background: linear-gradient(170deg, rgb(231,220,240), #ffffff);
    padding: 100px 0;
}.statteaching_history::before {
    height: 500px;
    content: "";
    right: -200px;
    opacity: 0.1;
    background-color: rgb(195,184,203,0.5);
    border-radius: 50%;
    position: absolute;
    top: -200px;
    width: 500px;
}.statteaching_history .container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}.statteaching_history .statreview_voices {
    max-width: 800px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    position: relative;
    display: flex;
    background-color: #ffffff;
    margin: 0 auto;
    border-radius: 25px;
    padding: 50px;
}.statteaching_history .statreview_voices:hover {
    transform: translateY(-10px);
}.statteaching_history .statreview_voices::before {
    background-color: rgb(160,148,167);
    top: -15px;
    height: 30px;
    left: 50px;
    z-index: -1;
    transform: rotate(45deg);
    width: 30px;
    position: absolute;
    content: "";
}.statteaching_history .statreview_voices::after {
    bottom: -15px;
    width: 30px;
    z-index: -1;
    content: "";
    background-color: rgb(195,184,203);
    height: 30px;
    position: absolute;
    transform: rotate(45deg);
    right: 50px;
}.statteaching_history .statimg_display_box {
    align-self: center;
    border: 4px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    height: 120px;
    width: 120px;
    position: relative;
}.statteaching_history .statreview_voices:hover .statimg_display_box {
    transform: scale(1.05);
}.statteaching_history .statimg_display_box::before {
    opacity: 0;
    background: linear-gradient(45deg, transparent 40%, rgb(195,184,203,0.5));
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
    content: "";
}.statteaching_history .statreview_voices:hover .statimg_display_box::before {
    opacity: 1;
}.statteaching_history .statemployee_section {
    position: relative;
    color: #000000;
    background-color: rgb(231,220,240);
    padding: 20px 30px;
    order: 3;
    line-height: 1.8;
    font-size: 12px;
    border-radius: 25px;
    margin: 25px 0 0;
}.statteaching_history .statemployee_section::before {
    position: absolute;
    border-right: 10px solid transparent;
    left: 30px;
    border-bottom: 10px solid rgb(231,220,240);
    border-left: 10px solid transparent;
    top: -10px;
    content: "";
}.statteaching_history .name {
    font-weight: 700;
    color: #000000;
    display: block;
    position: relative;
    order: 1;
    padding-bottom: 10px;
    font-size: 18px;
    margin: 5px 0;
    text-align: center;
}.statteaching_history .name::after {
    bottom: 0;
    position: absolute;
    transform: translateX(-50%);
    background-color: rgb(195,184,203);
    width: 40px;
    transition: width 0.3s ease;
    left: 50%;
    height: 2px;
    content: "";
}.statteaching_history .statreview_voices:hover .name::after {
    width: 80px;
}.statteaching_history span:not(.name) {
    order: 2;
    font-size: calc(12px * 0.9);
    color: rgb(160,148,167);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width: 768px) {.statteaching_history .statreview_voices {
    grid-template-columns: auto 1fr;
    gap: 10px 30px;
    align-items: center;
    display: grid;
    grid-template-areas: 
            "photo name"
            "photo job"
            "quote quote";
}.statteaching_history .statimg_display_box {
    width: 180px;
    height: 180px;
    grid-area: photo;
    margin-bottom: 0;
    align-self: start;
}.statteaching_history .name {
    text-align: left;
    font-size: 28px;
    grid-area: name;
}.statteaching_history .name::after {
    transform: none;
    left: 0;
}.statteaching_history span:not(.name) {
    margin-bottom: 0;
    grid-area: job;
    text-align: left;
}.statteaching_history .statemployee_section {
    margin-top: 30px;
    grid-area: quote;
}
}

@media (max-width: 768px) {.statteaching_history {
    padding: 70px 0;
}.statteaching_history .statreview_voices {
    padding: 40px 30px;
}
}

@media (max-width: 576px) {.statteaching_history {
    padding: 50px 0;
}.statteaching_history .statreview_voices {
    padding: 30px 20px;
}.statteaching_history .statemployee_section {
    padding: 15px 20px;
    margin-top: 20px;
}}.stattraining_method {
    background: rgb(231,220,240);
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 75vh;
}.stattraining_method::before {
    animation: pulseBackground 8s ease-in-out infinite alternate;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    content: "";
    background: 
        radial-gradient(ellipse at 30% 30%, rgb(195,184,203,0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgb(160,148,167,0.5) 0%, transparent 60%);
}.stattraining_method::after {
    left: 0;
    position: absolute;
    content: "";
    z-index: 1;
    top: 0;
    width: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 5px,
            rgba(255, 255, 255, 0.02) 5px,
            rgba(255, 255, 255, 0.02) 10px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 5px,
            rgba(255, 255, 255, 0.02) 5px,
            rgba(255, 255, 255, 0.02) 10px
        );
    height: 100%;
}.stattraining_method .container {
    max-width: 1200px;
    display: flex;
    position: relative;
    align-items: center;
    z-index: 5;
    width: 100%;
    padding: 0 2rem;
    justify-content: center;
}.stattraining_method .statlearn_studio {
    gap: 5rem;
    width: 100%;
    align-items: center;
    max-width: 1300px;
    position: relative;
    display: flex;
    justify-content: center;
}.stattraining_method .statlearn_studio::before {
    width: 100%;
    content: "";
    position: absolute;
    height: 100%;
    z-index: -1;
    border-radius: 50%;
    background: 
        repeating-radial-gradient(
            circle at center,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.03) 40px,
            rgba(255, 255, 255, 0.03) 60px
        );
    opacity: 0.6;
    animation: rotateField 40s linear infinite;
}.stattraining_method .statlearn_studio::after {
    background: 
        conic-gradient(
            transparent 0deg,
            rgb(195,184,203,0.5) 90deg,
            transparent 180deg,
            rgb(160,148,167,0.5) 270deg,
            transparent 360deg
        );
    opacity: 0.3;
    z-index: -2;
    content: "";
    position: absolute;
    transform-origin: center;
    animation: rotateField 20s linear infinite reverse;
    height: 100%;
    border-radius: 50%;
    width: 100%;
}.stattraining_method h3 {
    font-weight: 700;
    display: flex;
    margin: 0 10px;
    text-align: center;
    justify-content: center;
    z-index: 2;
    color: rgb(195,184,203);
    max-width: 600px;
    animation: magneticPulse 5s ease-in-out infinite;
    flex: 0 1 48%;
    border-radius: 30px;
    background: #ffffff;
    align-items: center;
    padding: 2rem 3rem;
    font-size: 36px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}.stattraining_method h3::before {
    border-radius: 35px;
    animation: borderPulse 5s ease-in-out infinite;
    position: absolute;
    background: linear-gradient(135deg, rgb(195,184,203,0.5), rgb(160,148,167,0.5));
    opacity: 0.7;
    z-index: -1;
    inset: -5px;
    content: "";
}.stattraining_method h3::after {
    z-index: 1;
    height: 2px;
    width: 40px;
    position: absolute;
    right: -20px;
    background: linear-gradient(to right, rgb(195,184,203), transparent);
    content: "";
    top: 50%;
}.stattraining_method span {
    line-height: 1.7;
    padding: 2rem 3rem;
    max-width: 850px;
    border-radius: 30px;
    font-size: 18px;
    flex: 0 1 70%;
    z-index: 2;
    margin: 0 10px;
    background: #ffffff;
    animation: magneticPulse 5s ease-in-out 0.5s infinite;
    color: #000000;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}.stattraining_method span::before {
    z-index: -1;
    content: "";
    background: linear-gradient(135deg, rgb(160,148,167,0.5), rgb(195,184,203,0.5));
    animation: borderPulse 5s ease-in-out 0.5s infinite;
    inset: -5px;
    opacity: 0.7;
    border-radius: 35px;
    position: absolute;
}.stattraining_method span::after {
    background: linear-gradient(to left, rgb(160,148,167), transparent);
    content: "";
    width: 40px;
    height: 2px;
    top: 50%;
    z-index: 1;
    position: absolute;
    left: -20px;
}

@keyframes pulseBackground {
    0%, 100% {
        opacity: 0.5;
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.7;
        background-position: 100% 100%;
    }
}

@keyframes rotateField {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes magneticPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.3;
    }
}

@media (max-width: 992px) {.stattraining_method .container {
    padding: 4rem 1.5rem;
}.stattraining_method .statlearn_studio {
    flex-direction: column;
    gap: 3rem;
}.stattraining_method h3 {
    width: 100%;
    padding: 1.8rem 2.5rem;
    flex: 0 1 auto;
    max-width: 100%;
    font-size: calc(36px * 0.9);
}.stattraining_method span {
    padding: 1.8rem 2.5rem;
    font-size: calc(18px * 0.95);
    max-width: 100%;
    width: 100%;
    flex: 0 1 auto;
}.stattraining_method h3::after {
    width: 40px;
    transform: translateX(50%) rotate(90deg);
    bottom: -20px;
    top: auto;
    right: 50%;
}.stattraining_method span::after {
    display: none;
}
}

@media (max-width: 768px) {.stattraining_method {
    min-height: auto;
    padding: 3rem 0;
}.stattraining_method .container {
    padding: 0 1.2rem;
}.stattraining_method .statlearn_studio {
    gap: 2.5rem;
}.stattraining_method h3 {
    font-size: calc(36px * 0.8);
    padding: 1.5rem 2rem;
}.stattraining_method span {
    font-size: calc(18px * 0.9);
    padding: 1.5rem 2rem;
}.stattraining_method h3::before,
    .stattraining_method span::before {
    inset: -3px;
}
}

@media (max-width: 576px) {.stattraining_method {
    padding: 2.5rem 0;
}.stattraining_method .container {
    padding: 0 1rem;
}.stattraining_method .statlearn_studio {
    gap: 2rem;
}.stattraining_method h3 {
    font-size: calc(36px * 0.7);
    padding: 1.2rem 1.5rem;
}.stattraining_method span {
    font-size: calc(18px * 0.85);
    padding: 1.2rem 1.5rem;
}.stattraining_method h3::after {
    bottom: -15px;
    width: 30px;
}.stattraining_method h3::before,
    .stattraining_method span::before {
    inset: -2px;
}
}