:root{
  --bg:#ffffff;
  --bg2:#f7f8fc;
  --bg3:#f0f2f8;
  --text:#0f1117;
  --text2:#4b5263;
  --text3:#8b93a7;
  --border:#e4e8f0;
  --border2:#d0d7e8;
  --accent:#2563eb;
  --accent2:#1d4ed8;
  --accent-light:#eff6ff;
  --accent-mid:#bfdbfe;
  --green:#16a34a;
  --green-light:#f0fdf4;
  --amber:#d97706;
  --shadow:0 1px 3px rgba(15,17,23,0.08),0 4px 16px rgba(15,17,23,0.04);
  --shadow2:0 2px 8px rgba(15,17,23,0.1),0 8px 32px rgba(15,17,23,0.06);
  --radius:12px;
  --radius2:8px;
}
.hm-header-cntlr.sticky_navbar {
    opacity: 0;
    transition: top .35s,opacity .35s,visibility .35s;
    transition-timing-function: ease-out;
    padding: 14px 16px!important;
    backdrop-filter: blur(20px);
    background: rgb(239 246 255 / 84%) !important;
}
.hm-header-cntlr.sticky_navbar.active_sticky_navbar {
    visibility: visible!important;
    opacity: 1;
    top: 0!important;
}
.hm-hdr-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.hm-hdr-menu ul li {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    vertical-align: baseline;
}
.hm-hdr-menu ul li a {
    color: inherit;
    font-size: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
}
.hm-hdr-menu ul li a:hover {
    color: var(--accent);
}
body .hm-hdr-right {
    flex-grow: initial!important;
    flex-basis: max-content!important;
}
.hero {
    /*border-bottom: 1px solid var(--border);*/
    position: relative;
    overflow: hidden;
    /*background: linear-gradient(180deg,#f0f4ff 0%,#ffffff 100%);*/
}
.hero-glow1 {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 320px;
    pointer-events: none;
    background: radial-gradient(ellipse,rgba(108,99,255,0.18) 0%,transparent 68%);
}
.hero-glow2 {
    position: absolute;
    bottom: -40px;
    right: -60px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    background: radial-gradient(ellipse,rgba(244,63,94,0.09) 0%,transparent 70%);
}
.hero-glow3 {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    background: radial-gradient(ellipse,rgba(56,189,248,0.07) 0%,transparent 70%);
}
.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(108,99,255,0.055) 1px,transparent 1px),linear-gradient(90deg,rgba(108,99,255,0.055) 1px,transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 100%);
    z-index: 1;
}
.hero-innr {
    text-align: center;
    position: relative;
    z-index: 20;
}
.hero-title {
    font-family: 'Fraunces',serif;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    font-weight: 600;
}
.hero .hero-title mark {
    color: #2563eb;
}
.hero .hero-title strong {
    font-size: 64px;
    display: block;
}
.hero-pills {
    justify-content: center;
    flex-wrap: wrap;
}
.stats-strip .stat-item {
    position: relative;
}
.stats-strip .stat-item * {
    white-space: nowrap;
}
.stats-strip .stat-item:not(:last-child):before{
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    /*background: var(--accent-light);*/
    background: rgba(108, 99, 255, 0.18);
    position: absolute;
    z-index: 10;
}
.stats-strip .stat-item:not(:last-child):after {
    /*content: '';*/
    right: 0;
    bottom: 0;
    width: 1px;
    position: absolute;
    background: blue;
    animation: hue-rotate 3s linear infinite;
    animation-delay: 0.4s;
    height: 0;
    z-index: 20;
}

@keyframes hue-rotate 
{
    0% 
    {
        filter: hue-rotate(0deg);
        height: 0;
    }
    100% 
    {
        filter: hue-rotate(360deg);
        height: 100%;
    }
}
.import-steps-intro {
    text-align: center;
}
.import-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow);
}
.is-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}
.mode-sec .mode-switcher {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0!important;
    padding: 0!important;
}
.mode-sec .mode-switcher li {
    list-style: none;
    margin: 0;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text2);
    font-family: 'Plus Jakarta Sans',sans-serif;
    transition: all .15s;
}
.mode-sec .mode-switcher li:hover {
    border-color: var(--accent-mid);
    color: var(--accent);
    background: var(--accent-light);
}
.mode-sec .mode-switcher li.active {
    color: var(--bg);
    background: var(--accent);
}
.mode-compare .mode-item {
    display: none;
}
.mode-compare .mode-item.active {
    display: block;
}
.mf-card,
.feat-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow);
}
.feat-card:hover {
    border-color: var(--accent-mid);
    box-shadow: var(--shadow2);
}
.mf-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mf-card-icon .wp-block-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.feat-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.speed-why-sec .sw-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: var(--shadow);
    transition: border-color .2s;
}
.sw-card .sw-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ps-scores .ps-score {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    flex: 1;
    min-width: 90px;
    box-shadow: var(--shadow);
}
body .speed-chart {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow2);
}
.speed-chart .sc-label {
    font-size: 12px;
    color: var(--text2);
    width: 80px;
    flex-shrink: 0;
}
.speed-chart .sc-track {
    flex: 1;
    height: 8px;
    background: var(--bg3);
    border-radius: 4px;
    overflow: hidden;
}
.speed-chart .sc-fill {
    height: 100%;
    border-radius: 4px;
    width: 0%;
    background: var(--accent);
}
.speed-chart .sc-fill.avg-fill {
    width: 0%;
    background: #e5e7eb;
}
.speed-chart .sc-fill.lcp-fill {
    width: 0%;
    background: var(--green);
}
.speed-chart .sc-fill.tbt-fill {
    width: 0%;
    background: var(--green);
}
.speed-chart .sc-fill.cls-fill {
    width: 0%;
    background: var(--green);
}

.speed-chart .active__elem .sc-fill {
    animation: sc_progress_fill 1s linear forwards;
}
.speed-chart .active__elem .sc-fill.avg-fill {
    animation: avg_progress_fill 1.2s linear forwards;
}
.speed-chart .active__elem .sc-fill.lcp-fill {
    animation: lcp_progress_fill 1.1s linear forwards;
}
.speed-chart .active__elem .sc-fill.tbt-fill {
    animation: tbt_progress_fill 0.8s linear forwards;
}
.speed-chart .active__elem .sc-fill.cls-fill {
    animation: cls_progress_fill 0.6s linear forwards;
}

.speed-chart .sc-val {
    font-size: 12px;
    font-weight: 600;
    width: 32px;
    text-align: right;
    flex-shrink: 0;
    color: var(--green);
}
.speed-chart .sc-lcp-label {
    font-size: 10px;
    color: var(--text3);
    padding-left: 16px;
    position: relative;
}
.speed-chart .sc-lcp-label:before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 2.8px;
}
@keyframes sc_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 18%;
    }
}
@keyframes avg_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 65%;
    }
}
@keyframes lcp_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 22%;
    }
}
@keyframes tbt_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 4%;
    }
}
@keyframes cls_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 3%;
    }
}
body .trust-badge-sec {
        background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    border-top: 1px solid var(--border);
}
.trust-badge-cards .trust-badge-card {
    flex: 1;
    min-width: 160px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.trust-badge-cards .trust-badge-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
body .trust-badge-list-cntlr {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow);
}
body .trust-badge-list-cntlr ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}
body .trust-badge-list-cntlr ul li {
    margin: 0;
    padding: 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}
body .trust-badge-list-cntlr ul li:before {
    content: '';
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-check-icon lucide-check'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: 50% 50%;
    position: absolute;
}
body .reviews-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 32px!important;
    text-align: center;
    box-shadow: var(--shadow);
}
body .reviews-card .fivestar {
    font-size: 40px!important;
    color: #e2e8f0;
    letter-spacing: 6px;
    margin-bottom: 20px;
}
body .rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
body .rating-item .reviews-track {
    flex: 1;
    height: 6px;
    background: var(--bg3);
    border-radius: 3px;
}
body .rating-item .reviews-track .reviews-fill {
    width: 0%;
    height: 6px;
    background: var(--accent);
    border-radius: 3px;
}
body .rating-cntlr.active__elem .rating-item:nth-child(1) .reviews-fill {
    animation: rating_5star_progress_fill 1.2s linear forwards;
    animation-delay: 0s;
}
body .rating-cntlr.active__elem .rating-item:nth-child(2) .reviews-fill {
    animation: rating_4star_progress_fill 1.2s linear forwards;
    animation-delay: 0.3s;
}
body .rating-cntlr.active__elem .rating-item:nth-child(3) .reviews-fill {
    animation: rating_3star_progress_fill 1.2s linear forwards;
    animation-delay: 0.6s;
}
body .rating-cntlr.active__elem .rating-item:nth-child(4) .reviews-fill {
    animation: rating_2star_progress_fill 1.2s linear forwards;
    animation-delay: 0.9s;
}
body .rating-cntlr.active__elem .rating-item:nth-child(5) .reviews-fill {
    animation: rating_1star_progress_fill 1.2s linear forwards;
    animation-delay: 1.2s;
}
@keyframes rating_5star_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 80%;
    }
}
@keyframes rating_4star_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 60%;
    }
}
@keyframes rating_3star_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 40%;
    }
}
@keyframes rating_2star_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 10%;
    }
}
@keyframes rating_1star_progress_fill {
    0%{
        width: 0%;
    }
    100%{
        width: 0%;
    }
}
body .rating-item .reviews-star {
    font-size: 12px;
    color: var(--text3);
    min-width: 22px;
    text-align: right;
}
body .rating-item .reviews-count {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    gap: 2px;
    line-height: 1;
    position: relative;
    font-size: 12px;
    color: var(--text3);
    min-width: 28px;
}
body .rating-item .reviews-count:after {
    content: '%';
    font-size: inherit;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    display: inline-block;
}
body .cta-sec {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
    padding: 72px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}