/*-------------- Fonts-------------- */
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Latin-Variable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Latin-Variable-Italic.woff2") format("woff2");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Latin-Variable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Latin-Variable-Italic.woff2") format("woff2");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Aeonik";
    src: url("../fonts/Aeonik-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Aeonik";
    src: url("../fonts/Aeonik-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Aeonik";
    src: url("../fonts/Aeonik-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Aeonik";
    src: url("../fonts/Aeonik-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Aeonik";
    src: url("../fonts/Aeonik-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Aeonik";
    src: url("../fonts/Aeonik-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Thin */
@font-face {
    font-family: "GT-Walsheim-Pro";
    src: url("../fonts/GT-Walsheim-Pro-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* Extra Light */
@font-face {
    font-family: "GT-Walsheim-Pro";
    src: url("../fonts/GT-Walsheim-Pro-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* Light */
@font-face {
    font-family: "GT-Walsheim-Pro";
    src: url("../fonts/GT-Walsheim-Pro-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Regular */
@font-face {
    font-family: "GT-Walsheim-Pro";
    src: url("../fonts/GT-Walsheim-Pro-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: "GT-Walsheim-Pro";
    src: url("../fonts/GT-Walsheim-Pro-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Semi Bold */
@font-face {
    font-family: "GT-Walsheim-Pro";
    src: url("../fonts/GT-Walsheim-Pro-Bold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: "GT-Walsheim-Pro";
    src: url("../fonts/GT-Walsheim-Pro-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Extra Bold */
@font-face {
    font-family: "GT-Walsheim-Pro";
    src: url("../fonts/GT-Walsheim-Pro-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Black */
@font-face {
    font-family: "GT-Walsheim-Pro";
    src: url("../fonts/GT-Walsheim-Pro-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ─── Reset & Root Variables ───────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Primary Palette */
    --c-primary: #06352d;
    --c-primary-dark: #1c3d15;
    --c-primary-mid: #07443b;
    --c-primary-hover: #0a4a3e;

    /* Accent Red */
    --c-red: #ca0f0f;
    --c-red-mid: #e24e4e;
    --c-red-light: #ffc2c2;
    --c-red-pale: #ffa9a9;

    /* Backgrounds */
    --c-bg-light: #f7f7f7;
    --c-bg-white: #ffffff;
    --c-bg-card-dark: #203230;
    --c-bg-hero: #f9f9f7;

    /* Text */
    --c-text-primary: #181d27;
    --c-text-secondary: #535862;
    --c-text-muted: rgba(0, 0, 0, 0.7);
    --c-text-white: #ffffff;
    --c-text-white-dim: rgba(255, 255, 255, 0.8);
    --c-text-green: #07443b;
    --c-text-green-dk: #1c3d15;

    /* Badges */
    --c-badge-green: #c1f5bb;
    --c-badge-discount: #f0f0f0;

    /* Borders */
    --c-border: #d9d9d9;
    --c-border-card: #d5d7da;
    --c-border-green: #1c3d15;
    --c-gray-200: #e5e5e5;
    --c-gray-light: #c7c7c7;
    --c-overlay: rgba(0, 0, 0, 0.6);

    /* Shadows */
    --shadow-sm: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
    --shadow-md: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
    --shadow-card: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.12);
    --shadow-btn:
        0 0 0.2rem rgba(0, 0, 0, 0.1), 0 0.1rem 0.8rem rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-main: "Aeonik", sans-serif;
    --font-ui: "SF Pro Display", sans-serif;
    --font-inter: "Inter", sans-serif;
    --font-roboto: "Roboto", sans-serif;
    --font-gt: "GT-Walsheim-Pro", sans-serif;

    /* Transitions */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --t-fast: 200ms;
    --t-mid: 350ms;
    --t-slow: 600ms;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 0;
}

/* ─── Font-size breakpoints ─────────────────────────────── */
html {
    font-size: 0.694vw;
    scroll-behavior: auto;
}

.overflow-hidden {
    overflow: hidden !important;
}

body {
    font-family: var(--font-main);
    color: var(--c-text-primary);
    background: var(--c-bg-white);
    overflow-x: clip;
}

.font-ui {
    font-family: var(--font-ui);
}

.font-main {
    font-family: var(--font-main);
}

.font-gt {
    font-family: var(--font-gt);
}

.font-inter {
    font-family: var(--font-inter);
}

.font-roboto {
    font-family: var(--font-roboto);
}

.bg-grey {
    background: #f7f7f7 !important;
}

.icon-16 {
    width: 1.6rem;
}

.icon-18 {
    width: 1.8rem;
}

.icon-20 {
    width: 2rem;
}

.icon-22 {
    width: 2.2rem;
}

.icon-24 {
    width: 2.4rem;
}

.icon-26 {
    width: 2.6rem;
}

.svg-16 {
    width: 1.6rem;
    height: 1.6rem;
}

.svg-18 {
    width: 1.8rem;
    height: 1.8rem;
}

.svg-20 {
    width: 2rem;
    height: 2rem;
}

.svg-22 {
    width: 2.2rem;
    height: 2.2rem;
}

.svg-24 {
    width: 2.4rem;
    height: 2.4rem;
}

img {
    height: auto;
}
/* ─── Utility Classes ────────────────────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-ui);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-tag.tag-red {
    color: var(--c-red);
}

.section-tag.tag-green {
    color: var(--c-text-green);
}

.section-tag .tag-icon {
    width: 2.4rem;
    height: 2.4rem;
}

.section-heading {
    font-family: var(--font-main);
    font-size: 5.6rem;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--c-text-primary);
    padding: 1.2rem 0 2rem;
}

.section-heading.centered {
    text-align: center;
}

.section-supporting {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--c-text-secondary);
    margin: 0;
    color: #535862;
    font-family: var(--font-ui);
}

.problem-header .section-heading {
    margin: 1.6rem 0 2rem;
}

.btn-pill-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.4rem 2.4rem;
    background: var(--c-primary);
    color: var(--c-text-white);
    font-family: var(--font-ui);
    font-size: 1.7rem;
    font-weight: 590;
    line-height: 1.2;
    letter-spacing: -0.006em;
    border: none;
    border-radius: 10rem;
    cursor: pointer;
    text-decoration: none;
    transition:
        background var(--t-fast) var(--ease),
        transform var(--t-fast) var(--ease),
        box-shadow var(--t-fast) var(--ease);
    box-shadow: var(--shadow-btn);
}

.btn-pill-dark:hover {
    background: var(--c-primary-hover);
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 2rem rgba(6, 53, 45, 0.3);
    color: var(--c-text-white);
}

.btn-pill-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.4rem 2.4rem;
    background: transparent;
    color: var(--c-primary-dark);
    font-family: var(--font-ui);
    font-size: 1.7rem;
    font-weight: 510;
    letter-spacing: -0.006em;
    border: 0.1rem solid var(--c-primary-dark);
    border-radius: 10rem;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--t-fast) var(--ease);
}

.btn-pill-outline:hover {
    background: var(--c-primary);
    color: var(--c-text-white);
    border-color: var(--c-primary);
    transform: translateY(-0.2rem);
}

.btn-pill-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.4rem 2.4rem;
    background: transparent;
    color: var(--c-text-secondary);
    font-family: var(--font-ui);
    font-size: 1.7rem;
    font-weight: 400;
    border: none;
    border-radius: 10rem;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--t-fast) var(--ease);
}

.btn-pill-ghost:hover {
    background: var(--c-bg-light);
    color: var(--c-text-primary);
}

.app-cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.app-cta-badge {
    display: block;
    height: 4rem;
    transition: all var(--t-fast) var(--ease);
}

.app-cta-badge:hover {
    transform: translateY(-0.2rem);
}

.app-cta-badge img {
    width: auto;
    height: 100%;
}

/* ─── Icon & Text Utilities ──────────────────────────────── */
.icon-lg {
    font-size: 2rem;
}

.tag-centered {
    justify-content: center;
}

.text-centered {
    text-align: center;
}

.mt-lg {
    margin-top: 1.6rem;
}

.mt-md {
    margin-top: 2rem;
}

.mt-section {
    margin-top: 3.2rem;
}

.btn-lg {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
}

.btn-sm {
    font-size: 1.5rem;
    padding: 1rem 2rem;
}

.container-max {
    max-width: 144rem;
    margin: 0 auto;
    padding: 0 6.4rem;
}

.container-inner {
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 6.4rem;
}

.std-card-container {
    max-width: 80rem;
    margin: 0 auto;
}

.swiper-pagination-bottom {
    position: relative;
    margin-top: 4rem;
}

/* ─── Preloader ──────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--c-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    /* Auto-hide after 2.5s via CSS animation — JS will also hide it if available */
    animation: preloaderAutoHide 0.6s ease 2.5s forwards;
}

@keyframes preloaderAutoHide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    animation: none;
}

.preloader-logo {
    font-family: var(--font-main);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--c-text-white);
    letter-spacing: -0.04em;
}

.preloader-logo span {
    color: var(--c-badge-green);
}

.preloader-bar {
    width: 16rem;
    height: 0.3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10rem;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    background: var(--c-badge-green);
    border-radius: 10rem;
    width: 0%;
    animation: preloadFill 1.6s var(--ease) forwards;
}

@keyframes preloadFill {
    to {
        width: 100%;
    }
}

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar-prufio {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 4.8rem;
    height: 10.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition:
        border-color var(--t-mid),
        background var(--t-mid),
        box-shadow var(--t-mid);
    transition: 0.35s ease;
    width: 100%;
}

.navbar-prufio.home-nav {
    left: 2rem;
    width: calc(100% - 4rem);
    border-radius: 2.4rem;
}

.navbar-prufio.home-nav {
    top: 2rem;
}

.navbar-prufio.scrolled {
    height: 6rem;
    top: 1rem;
    background: rgba(6, 53, 45, 0.96);
    backdrop-filter: blur(1.2rem);
    -webkit-backdrop-filter: blur(1.2rem);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0.2rem 1.6rem rgba(0, 0, 0, 0.2);
}

.navbar-prufio .nav-brand svg,
.navbar-prufio .nav-brand .header-logo-img,
.navbar-prufio .nav-brand .custom-logo {
    max-height: 23px;
    width: auto;
    height: auto;
    display: block;
}

.navbar-prufio .nav-brand .brand-dot {
    color: var(--c-badge-green);
}

.navbar-prufio .nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
}

.navbar-prufio .nav-links a {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.1rem 0.8rem;
    border-radius: 0.5rem;
    transition:
        color var(--t-fast),
        background var(--t-fast);
}

.navbar-prufio .nav-links a:hover,
.nav-links a.active-link {
    color: var(--c-text-white) !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-right .nav-lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 2.4rem;
    padding-right: 1.6rem;
    margin-right: 0.4rem;
    border-right: 0.1rem solid rgba(255, 255, 255, 0.28);
}

.nav-right .nav-lang-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.6rem;
    height: 100%;
    padding: 0 0.8rem;
    background: transparent;
    border: 0;
    border-radius: 0.8rem;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    transition:
        background var(--t-fast) var(--ease),
        color var(--t-fast) var(--ease);
}

.nav-right .nav-lang-current:hover,
.nav-right .nav-lang-switcher.is-open .nav-lang-current {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-text-white);
}

.nav-right .nav-lang-dropdown {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    min-width: 8rem;
    padding: 0.6rem;
    border-radius: 1rem;
    background: rgba(6, 53, 45, 0.98);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.6rem);
    transition:
        opacity var(--t-fast) var(--ease),
        transform var(--t-fast) var(--ease),
        visibility var(--t-fast) var(--ease);
    z-index: 20;
}

.nav-right .nav-lang-switcher.is-open .nav-lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-right .nav-lang-dropdown a {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 0.6rem;
    text-decoration: none;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 1.4rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.nav-right .nav-lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-text-white);
}

.nav-right .nav-lang-switcher.is-single .nav-lang-current {
    cursor: default;
}

.nav-right .nav-lang-switcher.is-single .nav-lang-current:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
}

.nav-right .btn-pill-ghost {
    color: var(--c-text-white);
    padding: 0 1.6rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-right .btn-pill-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-text-white);
}

.nav-right .btn-pill-dark,
.btn-pill-dark {
    color: var(--c-text-white);
    position: relative;
    height: 4.4rem;
    padding: 0 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-primary);
}

.nav-right .btn-pill-dark img,
.btn-bg {
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 100rem;
}

.nav-right .btn-pill-dark span,
.btn-pill-dark span {
    position: relative;
    z-index: 2;
}

/* Header CTA (same glass style reused for the blog hero CTA) */
.nav-right .btn-pill-dark,
.mobile-drawer .mob-cta .btn-pill-dark,
.blog-hero .hero__left .btn-pill-dark {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 0.2px;
    color: #ffffff;
    border: none;
    background: #e7e7e73d;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 1px 10px 0 #c9c9c90d,
        0 0 4px 0 #0000000d,
        inset 0 0 6px 0 #0000000d,
        inset 0 0 0 1px #a6a6a638,
        inset -1px -1px 0 -1px #ffffffcf,
        inset 1px 1px 0.5px -1px #fff,
        inset 5px 3px 0.5px -2.5px #c9c9c90d;
    border-radius: 100px;
    max-height: 44px;
}

.nav-right .btn-pill-dark:hover,
.mobile-drawer .mob-cta .btn-pill-dark:hover,
.blog-hero .hero__left .btn-pill-dark:hover {
    color: #ffffff;
    background: #e7e7e73d;
    transform: translateY(-0.2rem);
    box-shadow:
        0 1px 10px 0 #c9c9c90d,
        0 5px 16px 0 #00000023,
        inset 0 0 6px 0 #0000000d,
        inset 0 0 0 1px #a6a6a638,
        inset -1px -1px 0 -1px #ffffffcf,
        inset 1px 1px 0.5px -1px #fff,
        inset 5px 3px 0.5px -2.5px #c9c9c90d;
}

.navbar-prufio.v2 .nav-right .btn-pill-dark,
.mobile-drawer.v2 .mob-cta .btn-pill-dark {
    color: #171717;
    font-weight: 590;
}

.navbar-prufio.v2 .nav-right .btn-pill-dark:hover,
.mobile-drawer.v2 .mob-cta .btn-pill-dark:hover {
    color: #171717;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    gap: 0.6rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.menu-toggle span {
    width: 2.4rem;
    height: 0.2rem;
    background: var(--c-primary);
    border-radius: 10rem;
    transition:
        transform var(--t-mid) var(--ease),
        opacity var(--t-fast),
        width var(--t-mid) var(--ease);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 7.2rem;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--c-bg-white);
    border-bottom: 0.1rem solid var(--c-border);
    padding: 2rem 2.4rem 3.2rem;
    transform: translateY(-2rem);
    opacity: 0;
    pointer-events: none;
    transition:
        transform var(--t-mid) var(--ease),
        opacity var(--t-mid) var(--ease);
    box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.1);
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-drawer .mob-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-drawer .mob-nav-links a {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--c-text-primary);
    text-decoration: none;
    padding: 1.4rem 1.6rem;
    border-radius: 1rem;
    transition: background var(--t-fast);
}

.mobile-drawer .mob-nav-links a:hover {
    background: var(--c-bg-light);
    color: var(--c-text-primary);
}

.mobile-drawer .mob-lang-switcher {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-drawer .mob-lang-switcher a {
    min-width: 5.8rem;
    text-align: center;
    padding: 0.8rem 1.2rem;
    border-radius: 10rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 1.6rem;
    line-height: 1;
    text-transform: uppercase;
}

.mobile-drawer .mob-lang-switcher a.is-active,
.mobile-drawer .mob-lang-switcher a:hover {
    background: #ffffff;
    color: #06352d;
}

.mobile-drawer .mob-cta {
    margin-top: 1.6rem;
    width: 100%;
}

.mobile-drawer .mob-cta .btn-pill-dark {
    width: 100%;
    justify-content: center;
}

/* ─── Hero Section ───────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    padding-top: 14rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
    border-radius: 3.2rem;
    width: calc(100% - 4rem);
    margin: 0 auto;
    top: 2rem;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse 100% 100% at 50% 0%,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 19rem;
    padding-top: 4rem;
    position: relative;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 102rem;
    margin: 0 auto;
}

.hero-top-badges {
    display: inline-flex;
    gap: 1.2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: 2.4rem;
    padding: 0 1.2rem;
    background: #466c66;
    border: 1px solid #14463d;
    border-radius: 10rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--c-text-white);
}

.hero-badge svg {
    width: 1.4rem;
    height: 1.2rem;
}

.hero-badge.pulse svg {
    border-radius: 50%;
    animation: hero-badge-pulse 1.8s ease-out infinite;
}

@keyframes hero-badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 191, 109, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(108, 191, 109, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 191, 109, 0);
    }
}

.hero-cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 3.2rem;
    padding: 3.2rem 0;
}

.hero-cta-badges + .hero-cta-badges {
    padding-top: 0;
}

.pricing-cta-badge {
    color: var(--c-text-white);
    position: relative;
    height: 4.4rem;
    padding: 0 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: -0.01rem;
    text-decoration: none;
    color: var(--c-text-white);
    transition:
        background var(--t-fast) var(--ease),
        transform var(--t-fast) var(--ease),
        box-shadow var(--t-fast) var(--ease);
}

.pricing-cta-badge:hover {
    transform: translateY(-0.2rem);
}

.pricing-cta-badge span {
    position: relative;
    z-index: 2;
}

.pricing-cta-badge .pricing-cta-bg {
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    position: absolute;
    border-radius: 100rem;
}

.report-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: -0.01rem;
    text-decoration: none;
    color: var(--c-text-white);
}

.report-cta:hover span::before {
    transform: translateX(0);
    opacity: 1;
}

.report-cta span {
    position: relative;
    overflow: hidden;
    padding: 0.3rem 0;

    &::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0.1rem;
        background-color: var(--c-text-white);
        transition:
            transform var(--t-fast) var(--ease),
            opacity var(--t-fast) var(--ease);
        transform: translateX(-100%);
        opacity: 0;
    }
}

.hero-title {
    font-family: var(--font-main);
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--c-text-white);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    color: #c0cbc9;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding: 2.4rem 0;
}

.hero-trust-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
    font-size: 1.6rem;
    color: var(--c-text-white-dim);
}

.hero-trust-list span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-content .hero-title {
    margin: 2.5rem 0;
}

.btn-pill-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.6rem 3.2rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--c-text-white);
    font-family: var(--font-ui);
    font-size: 1.7rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10rem;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--t-fast) var(--ease);
}

.btn-pill-light:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-0.2rem);
}

.btn-pill-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.6rem 3.2rem;
    background: transparent;
    color: var(--c-text-white);
    font-family: var(--font-ui);
    font-size: 1.7rem;
    font-weight: 500;
    border: none;
    border-radius: 10rem;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--t-fast) var(--ease);
}

.btn-pill-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-pill-dark.btn-lg {
    padding: 0 1.6rem;
    height: 4.4rem;
    font-size: 1.6rem;
    font-weight: 400;
}

.hero-actions .btn-pill-outline-light svg {
    width: 1.6rem;
    height: 1.6rem;
}

.hero-actions .btn-pill-outline-light {
    font-size: 1.6rem;
    font-weight: 400;
    padding: 0 1.6rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
}

/* Hero Visual */
.prufio-bg {
    width: 122.1rem;
    height: auto;
    display: block;
    object-fit: cover;
}

.prufio-hero-video-block {
    width: 91.6rem;
    max-width: 100%;
    position: relative;
}

.prufio-hero-video-main {
    cursor: pointer;
}

.prufio-hero-video-main:hover .prufio-hero-video-play img {
    transform: scale(1.2);
}

.prufio-hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 6.8rem;
    height: 6.8rem;
}

.prufio-hero-video-play img {
    width: 100%;
    height: 100%;
    transition: all var(--t-fast) var(--ease);
}

.prufio-hero-video-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.prufio-hero-video-addon-left {
    width: 34.3rem;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    left: -15.2rem;
    bottom: 13.9rem;
    pointer-events: none;
}

.prufio-hero-video-addon-right {
    width: 34.3rem;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: -1.2rem;
    right: -19.6rem;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    width: calc(100% + 5rem);
    height: calc(100% + 5rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3.2rem;
    object-fit: cover;
}

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
    background: var(--c-primary);
    padding: 3.2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 700;
    color: var(--c-text-white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--c-text-white-dim);
    margin-top: 0.4rem;
}

/* ─── Section Layout ─────────────────────────────────────── */
.section-block {
    padding: 12.8rem 0;
}

.section-block.white {
    background: var(--c-bg-white);
}

.section-block.dark {
    background: var(--c-primary);
    color: var(--c-text-white);
}

.section-inner {
    max-width: 128rem;
    margin: 0 auto;
}

/* ─── Problem Section (3 risk cards) ────────────────────── */
.problem-header {
    max-width: 72rem;
    margin-bottom: 6.4rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}

.risk-card {
    background: linear-gradient(
        177deg,
        rgba(42, 90, 76, 1) 0%,
        rgba(31, 49, 46, 1) 50%
    );
    border-radius: 2.8rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-md);
    transition:
        transform var(--t-mid) var(--ease),
        box-shadow var(--t-mid) var(--ease);
}

.risk-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: var(--shadow-card);
}

.risk-card-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    max-width: 42rem;
    min-height: 45rem;
}

.risk-card-visual .car-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://www.figma.com/api/mcp/asset/4ab815b8-9d2e-48c8-be50-89c408731834");
    background-size: cover;
    background-position: center;
}

.risk-card-visual .car-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 4;
}

.risk-card-visual .car-img3 {
    width: 36rem;
    top: 33%;
}

/* Badge chips on cards */
.info-chip {
    position: absolute;
    z-index: 2;
    padding: 0.8rem 1.6rem;
    border: 0.1rem solid #e24e4e;
    border-radius: 0.45rem;
    background: var(--c-red-light);
    border-color: var(--c-red-mid);
}

.info-chip .chip-label {
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.info-chip .chip-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-red-mid);
    margin-top: 0.2rem;
    letter-spacing: -0.045em;
}

.info-chip.white-chip {
    background: var(--c-bg-white);
    border-color: var(--c-gray-200);
}

.info-chip.white-chip .chip-value {
    color: var(--c-primary-dark);
}

.risk-card-body {
    padding: 2.4rem;
    margin-top: -4rem;
}

.risk-card-title {
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--c-text-white);
    font-family: var(--font-main);
    margin-bottom: 1.6rem;
}

.risk-card-desc {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--c-text-white-dim);
    line-height: 1.4;
}

/* Card 1 – Fake listings */
.chip-accidents {
    top: 13rem;
    left: 2rem;
    z-index: 1;
}

.chip-owners {
    top: 27rem;
    left: 11rem;
    width: 12.5rem;
}

.chip-mileage {
    top: 14rem;
    right: 3rem;
    width: 14.5rem;
}

/* Card 2 – Looks perfect online */
.chip-price {
    bottom: 9rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-bg-white);
    border-color: var(--c-gray-200);
    width: 19rem;
    padding: 1.6rem 2rem;
    display: grid;
    border-radius: 1.1rem;
}

.chip-price .chip-value {
    color: var(--c-primary-dark);
}

/* Card 3 – Time & money */
.img-thumb {
    position: absolute;
    z-index: 2;
    border: 0.1rem solid var(--c-red-pale);
    border-radius: 1.2rem;
    overflow: hidden;
    background: var(--c-bg-card-dark);
}

.img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chip-total-loss {
    bottom: 9rem;
    left: 50%;
    transform: translateX(-50%);
    width: 19rem;
    line-height: 1.2;
    display: grid;
    gap: 1rem;
    padding: 1.8rem 2.5rem;
    border-radius: 1.1rem;
}

.risk-card-visual .car-img2 {
    width: 16.8rem;
    top: 40%;
}

/* ─── Features / Solution Section ───────────────────────── */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 8rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.feature-tag-text {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-primary-mid);
}

.feature-title {
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--c-text-primary);
}

.feature-desc {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--c-text-secondary);
    font-weight: 300;
}

.feature-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-points li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 1.6rem;
    color: var(--c-text-secondary);
    line-height: 1.5;
}

.feature-points li i {
    color: var(--c-primary);
    font-size: 1.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.feature-visual {
    border-radius: 2.4rem;
    overflow: hidden;
    background: var(--c-bg-card-dark);
    height: 46rem;
    position: relative;
    box-shadow: var(--shadow-card);
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(6, 53, 45, 0.4) 100%
    );
}

.feature-visual-card {
    position: absolute;
    bottom: 2.4rem;
    left: 2.4rem;
    right: 2.4rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(0.8rem);
    border-radius: 1.6rem;
    padding: 2rem 2.4rem;
}

.fvc-label {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-text-secondary);
    margin-bottom: 0.8rem;
}

.fvc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fvc-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-text-primary);
}

.fvc-score {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--c-primary-dark);
}

/* ─── Pricing Section ────────────────────────────────────── */
#pricing {
    background: #f7f7f7;
}

.pricing-header {
    text-align: center;
    margin-bottom: 6.4rem;
}

.pricing-header .section-heading {
    max-width: 52.9rem;
    margin: 1.2rem auto 1.2rem;
}

.pricing-header .section-supporting {
    margin-top: 1.6rem;
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    background: var(--c-bg-white);
    border-radius: 10rem;
    padding: 0.4rem;
    height: 6rem;
    width: 31.4rem;
    margin: 6.4rem auto 0;
}

.toggle-btn {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 1.8rem;
    font-weight: 400;
    border: none;
    background: none;
    border-radius: 10rem;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    color: var(--c-text-secondary);
}

.toggle-btn.active {
    background: var(--c-primary);
    color: var(--c-text-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
    align-items: start;
}

.pricing-card {
    background: var(--c-bg-white);
    border-radius: 0.8rem;
    overflow: hidden;
    position: relative;
    transition:
        transform var(--t-mid) var(--ease),
        box-shadow var(--t-mid) var(--ease);
    height: fit-content;
}

.pricing-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border-color: var(--c-primary-dark);
}

.pricing-card-banner {
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 1.6rem;
    font-weight: 500;
    background: var(--c-badge-discount);
    color: var(--c-text-green-dk);
}

.pricing-card.featured .pricing-card-banner {
    background: var(--c-primary-dark);
    color: var(--c-text-white);
}

.pricing-card-body {
    padding: 1.6rem 3.2rem 3.2rem 3.2rem;
}

.pricing-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.4rem;
}

.pricing-plan-name {
    font-family: var(--font-ui);
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
}

.pricing-save-badge {
    padding: 0.6rem 0.6rem;
    background: var(--c-badge-green);
    border-radius: 10rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: #000000;
    line-height: 1;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.price-main {
    font-family: var(--font-main);
    font-size: 4.8rem;
    font-weight: 500;
    color: var(--c-text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-meta {
    font-size: 1.6rem;
    color: var(--c-gray-light);
    margin-bottom: 0.3rem;
}

.price-meta s {
    text-decoration: line-through;
}

.price-total {
    font-size: 1.6rem;
    color: var(--c-text-primary);
    font-weight: 600;
}

.price-total span {
    font-size: 1.4rem;
    font-weight: 400;
}

.pricing-divider {
    height: 0.1rem;
    background: var(--c-border);
    margin: 2.4rem 0;
}

.pricing-desc {
    font-family: var(--font-ui);
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--c-text-muted);
    font-weight: 400;
    margin-bottom: 3.2rem;
}

.pricing-cta {
    width: 100%;
    padding: 1.4rem;
    background: transparent;
    border: 0.1rem solid var(--c-text-green-dk);
    border-radius: 10rem;
    font-family: var(--font-ui);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--c-text-green-dk);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    text-align: center;
    display: block;
    text-decoration: none;
}

.pricing-cta:hover {
    background: var(--c-primary);
    color: var(--c-text-white);
    border-color: var(--c-primary);
}

.pricing-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
    margin-top: 4rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-ui);
    font-size: 1.4rem;
    color: var(--c-text-green-dk);
    font-weight: 400;
}

.trust-item i {
    font-size: 2rem;
    color: var(--c-text-green-dk);
}

.pricing-panel {
    display: none;
}

.pricing-panel.active {
    display: block;
}

/* Standard pricing */
.std-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
}

.std-card {
    background: var(--c-bg-white);
    border: 0.1rem solid var(--c-border);
    border-radius: 2rem;
    padding: 3.2rem;
    transition:
        transform var(--t-mid) var(--ease),
        box-shadow var(--t-mid) var(--ease);
}

.std-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: var(--shadow-card);
}

.std-card-label {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-secondary);
    margin-bottom: 1.2rem;
}

.std-price {
    font-size: 4.8rem;
    font-weight: 600;
    color: var(--c-text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.std-price sup {
    font-size: 2.4rem;
    vertical-align: super;
}

.std-desc {
    font-size: 1.6rem;
    color: var(--c-text-secondary);
    margin-top: 1.2rem;
    line-height: 1.5;
}

/* ─── Go to Top Button ───────────────────────────────────── */
#go-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 990;
    width: 4.8rem;
    height: 4.8rem;
    background: var(--c-primary);
    color: var(--c-text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0.4rem 1.6rem rgba(6, 53, 45, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(1rem);
    transition:
        opacity var(--t-mid),
        visibility var(--t-mid),
        transform var(--t-mid) var(--ease),
        background var(--t-fast);
}

#go-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

#go-top:hover {
    background: var(--c-primary-dark);
    transform: translateY(-0.3rem) !important;
}

/* ================ marquee-area ================= */
.marquee-area {
    background: #f7f7f7;
    padding: 4.8rem 0;
    margin-top: 2rem;
}

.marquee-area p {
    color: #6b7280;
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
}

.js-marquee {
    display: flex;
    align-items: center;
}

.marquee {
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1.6rem 0;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 12.8rem;
    height: 100%;
    background: linear-gradient(
        80deg,
        rgba(247, 247, 247, 1) 0%,
        rgba(247, 247, 247, 0) 100%
    );
    z-index: 1;
}

.marquee::after {
    left: auto;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        80deg,
        rgba(247, 247, 247, 0) 0%,
        rgba(247, 247, 247, 1) 100%
    );
    z-index: 1;
}

.marquee img {
    height: 2.5rem;
    width: auto;
    margin: 0 2rem;
    opacity: 0.8;
}

.marquee > div {
    display: flex;
    align-items: center;
}

.brand1 {
    width: 17.7rem;
}

.brand2 {
    width: 14.9rem;
}

.brand3 {
    width: 15.5rem;
}

.brand4 {
    width: 17.3rem;
}

.brand5 {
    width: 24.4rem;
}

.brand6 {
    width: 14rem;
}

/* =============== CTA area =============== */
.cta-area {
    padding: 9.6rem 0;
}

.title-36 {
    font-size: 3.6rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.cta-content-left {
    color: #fff;
}

.text-16 {
    font-size: 1.6rem;
}

.store-badge {
    width: 12.6rem;
    display: block;
}

.store-badge img {
    width: 100%;
}

.cta-content-left * {
    margin: 0;
}

.cta-content-left p {
    padding: 2rem 0 4.8rem;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 2.4rem;
    padding-left: 6.2rem;
    background: linear-gradient(
        126deg,
        rgba(39, 91, 83, 1) 0%,
        rgba(20, 50, 45, 1) 80%
    );
}

.app-section-img {
    max-width: 64rem;
}

/* ======================= blog-area ===================== */
.blog-area {
    background: #f9f9f9;
    padding: 11.2rem 0;
}

.blog-area .section-tag {
    font-size: 1.4rem;
}

.blog-area .section-heading {
    max-width: 100%;
}

.blog-area .section-supporting {
    max-width: 65rem;
    margin: 0 auto;
    font-size: 1.6rem;
}

.blog-area .row {
    --bs-gutter-x: 3.2rem;
    --bs-gutter-y: 2.4rem;
    margin-bottom: 8rem;
    --bs-gutter-x: 6.5rem;
    --bs-gutter-y: 3.5rem;
}

.text-14 {
    font-size: 1.4rem;
}

.text-16 {
    font-size: 1.6rem;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #181d27;
    line-height: 2rem;
    margin: 1.2rem 0 !important;
}

.card-body {
    padding: 0;
    margin-top: 1.6rem;
}

.card {
    background: transparent;
}

a.card {
    text-decoration: none;
    display: block;
}

.card:hover h5 {
    color: var(--c-text-green-dk);
}

.section-bottom a {
    width: 21.4rem;
    height: 4.8rem;
    font-size: 1.7rem;
    font-weight: 600;
}

.custom-accordion {
    margin: 0 auto;
}

.acc-item {
    border-radius: 1.6rem;
    margin-bottom: 1.6rem;
    overflow: hidden;
    padding: 2.4rem;
    transition: 0.35s ease;
}

.acc-item:last-child {
    margin-bottom: 0;
}

.acc-header {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-main);
}

.chevron-down {
    width: 2.4rem;
    transition: 0.25s ease;
    transform: rotate(180deg);
}

.acc-body {
    display: none;
    margin-top: 0.6rem;
    overflow: hidden;
    color: #797979;
    font-size: 1.6rem;
    font-weight: 400;
}

/* Active State — height handled by main.js slideDown */
.acc-item.active .acc-body {
    display: block;
}

.acc-item.active {
    background: #f3f3f3;
}

.acc-item.active .chevron-down {
    transform: rotate(0);
}

/* =========== faq-area =========== */
.faq-area {
    background: #f7f7f7;
    padding: 9.6rem 0;
}

.text-20 {
    font-size: 2rem;
}

.faq-area .content .section-tag {
    letter-spacing: 0.02em;
    line-height: 0.95;
}

.faq-area .content h2 {
    font-size: 5.6rem;
    font-weight: 700;
    color: #000000;
    padding: 2rem 0 15.6rem;
}

.faq-img {
    width: 28.3rem;
    height: auto;
}

.faq-area .row {
    padding: 6.6rem 4.3rem 7.9rem 7.3rem;
    border: 0.1rem solid #d9d9d9;
    border-radius: 2.4rem;
    background: var(--c-bg-white);
}

/* ================ pricing-panel ================= */
.pricing-panel {
    display: none;
}

.pricing-panel.active {
    display: block;
}

.toggle-btn.active {
    background: #000;
    color: #fff;
}

/* ============= Testimonials area ================ */
#testimonials {
    padding: 9.6rem 0;
    background: #f7f7f7;
}

.testimonials-header .section-heading {
    margin: 1.2rem 0 2rem;
}

.testimonials-header {
    margin-bottom: 6.4rem;
}

.testimonials-header .section-tag {
    font-size: 1.8rem;
}

.testimonial-box {
    border-radius: 1.2rem;
    padding: 3.2rem;
    background: #fff;
    transition: 0.25s ease;
}

.testimonial-box > p {
    font-weight: 500;
    margin: 3rem 0;
}

.testimonial-box ul li {
    display: grid;
    gap: 0.4rem;
}

.testimonial-box ul li a {
    color: #181d27;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s;
}

.testimonial-box ul li a:hover {
    opacity: 0.65;
}

.testimonial-box ul li span {
    color: #535862;
}

.testimonial-box ul li.li-2 {
    text-align: right;
}

.testimonial-box ul li.li-2 p {
    font-size: 1.6rem;
    font-weight: 600;
}

#testimonials .row {
    --bs-gutter-x: 2.4rem;
    --bs-gutter-y: 2.4rem;
}

.testimonial-box:hover {
    box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-0.25rem);
}

.testimonial-box ul {
    padding: 0;
}

/* ================== Solution area =================== */
#solution {
    padding: 13rem 0 8.6rem;
}

.card-hover {
    transition: 0.3s ease;
}

.solution-box:hover,
.card-hover {
    box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-0.25rem);
}

.solution-box {
    border-radius: 2.8rem;
    background: #f3f3f3;
    display: grid;
    gap: 30px;
    height: 100%;
    transition: 0.35s ease;
    overflow: hidden;
}

.solution-info {
    padding: 4.8rem 3.2rem;
}

.solution-info-top h3 {
    line-height: 0.95;
    margin-bottom: 1.6rem;
}

.solution-info-top p {
    color: #494949;
    font-size: 1.4rem;
    margin: 0;
}

.solution-info hr {
    margin: 2.4rem 0;
    border-color: #cfcfcf;
    opacity: 1;
}

.solution-info ul li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #31542a;
    font-size: 1.6rem;
}

.solution-info ul {
    display: grid;
    gap: 2rem;
    padding: 0;
}

.solution-info ul li svg {
    width: 2.8rem;
    height: 2.8rem;
}

.solution-img {
    height: 32.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 90px;
}

.solution-img img {
    width: 100%;
}

#solution .container > .row > .col-lg-6 .solution-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

#solution .container > .row > .col-lg-6 .solution-box .solution-info {
    padding-top: 0;
}

#solution .container > .row > .col-lg-6:nth-child(2) .solution-img {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 80px 0 30px 50px;
}

#solution .container > .row > .col-lg-6:nth-child(2) .solution-img img {
    margin-right: -1px;
    object-position: right;
}

#solution .solution-box.v2 .row > .col-lg-6:nth-child(2) .solution-img {
    padding: 30px 120px 0 120px;
}

#solution .solution-box.v2 .row > .col-lg-6:nth-child(2) .solution-img img {
    height: 100%;
    width: auto;
}

#solution .container > .row {
    --bs-gutter-x: 2.4rem;
    --bs-gutter-y: 2.4rem;
    margin-bottom: 6.4rem;
}

#solution .solution-header {
    margin-bottom: 6.4rem;
}

#solution .solution-header h2 {
    padding: 1.2rem 0 2rem;
}

.solution-box.v2 .solution-img {
    min-height: 45rem;
}

#solution .section-bottom .btn-pill-dark {
    background: #1c3d15;
    box-shadow: 0 0 0.2rem 0.15rem #6fb064 inset;
    padding: 0 2.1rem;
    width: auto;
}

.solution-box.v2 .col-lg-6:first-child {
    display: flex;
    align-items: center;
}

.solution-box.v2 .col-lg-6:first-child .solution-info {
    width: 100%;
}

/* =========================== */
/* ─── SPACER (demo scroll context) ─────────── */
.spacer {
    height: 100vh;
    background: linear-gradient(180deg, #0c1c12 0%, #0e2015 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spacer p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════
       HOW IT WORKS — SECTION
    ══════════════════════════════════════════════ */
.hiw {
    position: relative;
    height: 400vh;
}

.pinned-section {
    z-index: 9999;
}

.section-hiw-header {
    padding-top: 8rem;
}

.bg-gradient-red {
    background: linear-gradient(
        80deg,
        rgba(11, 74, 65, 1) 0%,
        rgba(4, 35, 29, 1) 100%
    );
}

.section-hiw-header .section-heading {
    margin-bottom: 0;
    padding-bottom: 0;
}

.hiw-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* Subtle noise texture */
.hiw-sticky::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.hiw-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 9rem;
}

/* ─── LEFT COLUMN ────────────────────────────── */
.hiw-left {
    width: 50rem;
    flex-shrink: 0;
}

.hiw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.2rem;
}

.hiw-eyebrow-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    border: 0.15rem solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.hiw-heading {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 5.5rem;
}

/* ─── STEP LIST ──────────────────────────────── */
.hiw-steps {
    position: relative;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 2.2rem;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: opacity 0.5s ease;
    height: 14.5rem;
}

.hiw-step:last-child {
    padding-bottom: 0;
    height: 6rem;
}

/* vertical connector */
.hiw-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    top: 1.5rem;
    bottom: 0;
    width: 0.1rem;
    background: #6d928c;
}

/* ── Dot ── */
.step-dot {
    flex-shrink: 0;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #6d928c;
    position: relative;
    z-index: 1;
    border: 0.3rem solid transparent;
    transition:
        background 0.45s ease,
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.45s ease;
}

.hiw-step.active .step-dot {
    background: #fff;
    transform: scale(1.15);
    border: 0.3rem solid #6b928c;
}

/* ── Text ── */
.step-label {
    font-size: 2.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    transition:
        font-size 0.35s ease,
        font-weight 0.35s ease,
        color 0.35s ease;
    margin-bottom: 1.6rem;
}

.hiw-step.active .step-label {
    color: #fff;
}

.step-desc {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.35;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        margin-top 0.35s ease;
}

.hiw-step.active .step-desc {
    max-height: 8rem;
    opacity: 1;
    margin-top: 0.65rem;
}

/* ─── RIGHT COLUMN ───────────────────────────── */
.hiw-right {
    flex: 1;
    position: relative;
    height: 60rem;
}

.mockup {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(5rem) scale(0.965);
    transition:
        opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    will-change: opacity, transform;
}

.mockup.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.mockup.leave {
    opacity: 0;
    transform: translateX(-4rem) scale(0.965);
}

/* ================ My updates =============== */
/* .timeline-img {
  margin-left: auto;
  margin-right: -8rem;
}

.timeline-img1 {
  width: 71.4rem;
  margin-left: auto;
  margin-right: -8rem;
}

.timeline-img2 {
  width: 74rem;
  margin-right: -12rem;
}

.timeline-img3 {
  width: 33.8rem;
  margin-right: 4rem;
}

.timeline-img4 {
  width: 72rem;
  margin-right: -6rem;
} */

/* ==================== Footer area ====================== */
.footer-logo svg {
    width: 11.5rem;
}

.ft-left p {
    margin: 0;
    color: #94979c;
    padding: 3.2rem 0;
}

.ft-left ul {
    justify-content: start;
    gap: 3.2rem;
    padding: 0;
    font-size: 1.6rem;
}

.ft-left ul li a {
    color: #d3d3d3;
    text-decoration: none;
}

.ft-left ul li {
    display: flex;
}

.ft-left ul li a:hover {
    color: #fff;
}

.footer-top {
    gap: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6.4rem 0;
    border-bottom: 0.1rem solid #ececec;
}

.ft-right ul li img {
    width: 13.5rem;
}

.ft-right ul {
    gap: 1.6rem;
    padding: 0;
    margin-top: 1.6rem;
}

.ft-right h5 {
    font-weight: 500;
    color: #cecfd2;
}

.ft-left {
    max-width: 51.7rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.6rem;
    color: #d8d8d8;
    padding: 3.2rem 0 4.8rem;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.footer-bottom ul li {
    display: block;
}

.mt-3 {
    margin-top: 2rem;
}

/* ── Popup ── */
#car-popup {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 38.8rem;
    background: #fff;
    border-radius: 1rem;
    padding: 2.2rem;
    border: 0.1rem solid #d5d7da;

    /* Slide-out state (default) */
    transform: translateX(calc(100% + 3rem));
    transition: transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1);
    will-change: transform;
    z-index: 9999;
}

#car-popup.visible {
    transform: translateX(0);
}

/* Close button */
#car-popup-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 2.8rem;
    height: 2.8rem;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #d5d7da;
    font-size: 1.6rem;
    line-height: 1;
    transition:
        background 0.18s,
        color 0.18s;
    padding: 0;
}

#car-popup-close:hover {
    background: #f0f0f0;
    color: #000000;
}

#car-popup-close svg {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
}

/* Popup content */
.popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    font-family: var(--font-main);
    line-height: 1;
}

.popup-subtitle {
    font-size: 1.4rem;
    color: #2a3e5b;
    margin: 2rem 0;
    font-family: "Inter", sans-serif;
    line-height: 1;
}

.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    padding: 0 1rem;
    height: 4.8rem;
    background: #06352d;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    border: none;
    border-radius: 100rem;
    cursor: pointer;
    transition:
        background 0.18s,
        transform 0.12s;
    text-align: center;
    box-shadow: 0 0 0.2rem 0.1rem #48a091 inset;
}

.popup-btn:hover {
    background: #224d3a;
}

.popup-btn:active {
    transform: scale(0.98);
}

/* ─── Blog Filter Section ────────────────────────────────── */
.blog-filter-section {
    padding: 8.1rem 0 4.8rem;
    /* Above the blog grid: .blog-container pulls itself up with a negative
     top margin and would otherwise swallow taps on the filter button. */
    position: relative;
    z-index: 10;
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.filter-btns {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #fafafa;
    border-radius: 0.8rem;
    border: 0.1rem solid #e9eaeb;
}

.filter-btns .control {
    background: transparent;
    border: none;
    padding: 1rem 1.2rem;
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 500;
    color: #717680;
    cursor: pointer;
    border-radius: 0.6rem;
    transition: all var(--t-fast) var(--ease);
    border: 0.1rem solid transparent;
}

.filter-btns .control:hover {
    background: var(--c-bg-light);
    color: var(--c-text-primary);
}

.filter-btns .control.mixitup-control-active {
    background: #ffffff;
    color: #0d362f;
    border-color: #d5d7da;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 26.1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.2rem 1rem 1.2rem;
    border: 0.1rem solid #d5d7da;
    border-radius: 0.8rem;
    font-family: var(--font-ui);
    font-size: 1.6rem;
    color: #717680;
    background: var(--c-bg-white);
    transition: border-color var(--t-fast) var(--ease);
}

.search-box input::placeholder {
    color: #717680;
    font-size: 1.6rem;
}

.search-box input:focus {
    outline: none;
    border-color: var(--c-primary);
}

/* ─── Blog Grid Section ──────────────────────────────────── */
.blog-grid-section {
    padding-bottom: 4.8rem;
}

.blog-grid-section .container > .row {
    --bs-gutter-x: 3.2rem;
    --bs-gutter-y: 4.8rem;
    margin-bottom: 4rem;
}

.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-mid) var(--ease);
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 1.6rem;
    overflow: hidden;
    margin-bottom: 1.6rem;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-family: var(--font-ui);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: block;
}

.blog-category.design {
    font-size: 1.4rem;
    font-weight: 500;
    color: #0b4940;
    margin-bottom: 0;
}

/* Actually looks purple in some designs, let's use the image colors */
.blog-category.product {
    color: #027a48;
}

/* Green */
.blog-category.software {
    color: #c11574;
}

/* Pink */
.blog-category.customer {
    color: #026aa2;
}

/* Blue */

.blog-category.default {
    color: #717680;
}

.blog-card-img-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 12rem;
    background: linear-gradient(135deg, #f2f4f7 0%, #e4e7ec 100%);
}

.blog-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    margin: 0.8rem 0 0.4rem;
}

.blog-title {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--c-text-primary);
}

.blog-title a {
    color: inherit;
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--c-primary);
}

a.blog-card-img {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-arrow {
    font-size: 2.4rem;
    color: var(--c-text-primary);
    transition: transform var(--t-fast) var(--ease);
}

.blog-card:hover .blog-arrow {
    transform: translate(0.4rem, -0.4rem);
}

.blog-arrow {
    display: flex;
}

.blog-desc {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #535862;
    margin-bottom: 2rem;
}

.blog-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0;
}

.author-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--c-text-primary);
}

.blog-date {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--c-text-secondary);
}

.prufio-page-simple h1 {
    font-size: 40px;
    font-weight: 700;
}

.prufio-page-simple li {
    font-size: 14px;
}

.prufio-page-simple p {
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
}

.prufio-page-simple ol {
    counter-reset: item;
    list-style: none;
}

.prufio-page-simple ol li {
    counter-increment: item;
}

.prufio-page-simple ol li::before {
    content: counters(item, ".") ". ";
}

.prufio-page-simple ol ul {
    counter-reset: item;
}

.has-medium-font-size {
    font-size: 24px;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .prufio-page-simple .px-32 {
        padding-left: 8.2rem !important;
        padding-right: 8.2rem !important;
    }
}

/* ─── Pagination Section ────────────────────────────────── */
.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 9.6rem;
}

.pag-btn {
    background: transparent;
    border: 0.1rem solid #d5d7da;
    border-radius: 0.8rem;
    padding: 0.8rem 1.2rem;
    font-family: var(--font-ui);
    font-size: 1.4rem;
    font-weight: 600;
    color: #414651;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--t-fast) var(--ease);
}

.pag-btn:hover {
    background: var(--c-bg-light);
    color: var(--c-text-primary);
}

.pag-pages {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.pag-num {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 1.4rem;
    font-weight: 500;
    color: #717680;
    cursor: pointer;
    border-radius: 0.8rem;
    transition: all var(--t-fast) var(--ease);
}

.pag-num:hover {
    background: var(--c-bg-light);
}

.pag-num.active {
    background: #fafafa;
    color: #414651;
}

.pag-dots {
    padding: 0 0.8rem;
    color: var(--c-text-secondary);
}

/* ============== inner-main ============== */
.inner-main {
    padding-top: 9.2rem;
}

/* ============== hero__inner ============== */
.bg-overlay {
    position: absolute;
    height: 100%;
    width: calc(100% - 4rem);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2.4rem;
}

.hero__inner {
    color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-left: 1.6rem;
    border-radius: 2.4rem;
}

.blog-hero-img {
    width: 64rem;
}

.hero__stars {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.hero__trustpilot {
    display: flex;
    gap: 1.3rem;
    font-size: 1.2rem;
    font-family: "roboto", sans-serif;
}

.hero__trustpilot-text {
    display: flex;
    gap: 1.3rem;
    font-size: 1.2rem;
    color: #fff;
}

.trustpilot-logo {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__title {
    font-size: 4.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 1.6rem 0;
}

.hero__subtitle {
    font-size: 1.8rem;
    color: #ececec;
    opacity: 0.8;
    font-weight: 300;
    margin-bottom: 2.4rem;
}

.hero__avatars {
    display: flex;
    align-items: center;
}

.hero__avatars img {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 10rem;
    border: 0.1rem solid #fff;
    margin-left: -1rem;
}

.hero__avatars img:first-child {
    margin: 0;
}

.hero__social-proof {
    display: flex;
    align-items: center;
    margin-top: 1.6rem;
}

.hero__social-text {
    margin: 0;
    color: #e2e8f0;
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding-left: 1.6rem;
}

.hero__left {
    padding: 4.8rem 0;
}

.hero__left .btn-pill-dark {
    width: fit-content;
}

.blog-hero .hero__left .btn-pill-dark {
    padding: 12px 16px;
    height: 44px;
}

/* ===================== Navbar v2 ================= */
.navbar-prufio.v2 {
    height: 7.6rem;
    top: 0;
}

.navbar-prufio.v2.home-nav.scrolled {
    top: 1rem;
    border-radius: 1.6rem;
}

/* Inner / v2 bar: same as front-end — white SVG paths + filter reads as dark mark on light navbar. */
.navbar-prufio.v2 .nav-brand img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7483%)
        hue-rotate(312deg) brightness(100%) contrast(107%);
}

.navbar-prufio.v2 .nav-links li a {
    color: #000;
    opacity: 0.7;
}

.navbar-prufio.v2 .nav-right .btn-pill-ghost {
    color: #000000;
}

.navbar-prufio.v2 .nav-right .nav-lang-switcher {
    border-right-color: rgba(0, 0, 0, 0.2);
}

.navbar-prufio.v2 .nav-right .nav-lang-current {
    color: rgba(0, 0, 0, 0.7);
}

.navbar-prufio.v2 .nav-right .nav-lang-current:hover,
.navbar-prufio.v2 .nav-right .nav-lang-switcher.is-open .nav-lang-current {
    background: #f1f1f1;
    color: #000000;
}

.navbar-prufio.v2 .nav-right .nav-lang-dropdown {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.12);
}

.navbar-prufio.v2 .nav-right .nav-lang-dropdown a {
    color: rgba(0, 0, 0, 0.74);
}

.navbar-prufio.v2 .nav-right .nav-lang-dropdown a:hover {
    background: #f1f1f1;
    color: #000000;
}

.navbar-prufio.v2 .nav-right .btn-pill-ghost:hover {
    background: #f1f1f1;
}

.mobile-drawer.v2 .mob-lang-switcher a {
    border-color: rgba(0, 0, 0, 0.2);
    color: #000000;
}

.mobile-drawer.v2 .mob-lang-switcher a.is-active,
.mobile-drawer.v2 .mob-lang-switcher a:hover {
    background: #000000;
    color: #ffffff;
}

.navbar-prufio.v2.scrolled {
    background: rgba(255, 255, 255, 0.75);
}

.navbar-prufio.v2 .nav-links a:hover,
.navbar-prufio.v2 .nav-links a.active-link {
    color: var(--c-text-white) !important;
    background: var(--c-bg-card-dark);
}

/* Non-home shell: v2 bar + footer-inner (articles, archives, etc.) */
body.prufio-inner-page .navbar-prufio.inner-nav {
    box-shadow: 0 0.1rem 0 rgba(0, 0, 0, 0.06);
}

body.prufio-inner-page .footer.footer-inner {
    border-radius: 2.4rem 2.4rem 0 0;
}

.sidebar-cta-text p:first-child,
.promo-card-desc p:first-child,
.about-blurb-text p:first-child {
    margin-top: 0;
}

.sidebar-cta-text p:last-child,
.promo-card-desc p:last-child,
.about-blurb-text p:last-child {
    margin-bottom: 0;
}

/* ========================== Pirmas Page ======================= */
.pirmas-hero {
    padding: 0 2rem 5rem;
}

.pirmas-hero-img {
    width: 100%;
    border-radius: 1.6rem;
    object-fit: cover;
}

.pirmas-content ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: #171717;
}

.pirmas-content ul li a {
    color: #171717;
    text-decoration: none;
}

.pirmas-content ul li a:hover {
    opacity: 0.5;
}

.pirmas-content h1 {
    color: #171717;
    font-size: 6rem;
    line-height: 6rem;
    font-weight: 500;
    padding: 3.2rem 0;
    letter-spacing: -0.018em;
}

.avatar-img {
    width: 4.8rem;
    height: 4.8rem;
    object-fit: cover;
    border-radius: 10rem;
}

.avatar-content {
    padding-left: 1.2rem;
}

.avatar-content span {
    color: #181d27;
    font-size: 1.7rem;
    font-weight: 500;
    font-family: "GT-Walsheim-Pro";
    padding: 0;
    margin: 0;
}

.avatar-content p {
    color: #737373;
    font-size: 1.7rem;
    letter-spacing: 0.035em;
    padding: 0;
    margin: 0;
}

.dec-none {
    text-decoration: none !important;
}

/* ==================== Table of Contents ===================== */
.table-contents {
    padding-bottom: 6rem;
}

.table-left {
    font-size: 1.8rem;
    color: #171717;
}

.table-left h2[id],
.table-left .tldr-section[id] {
    scroll-margin-top: 12rem;
}

.table-left p a {
    color: #3b82f6;
}

.link-blue {
    color: #3b82f6;
    font-weight: 500;
}

.link-blue:hover {
    text-decoration: none;
    color: #000;
}

.table-left p {
    margin-bottom: 1.6rem;
}

.tldr-top {
    border-radius: 1.6rem;
    background: #fafafa;
    padding: 2.4rem;
    margin-bottom: 1.6rem;
}

.table-card-bg,
.table-card-bg.v2 {
    border-radius: 1.6rem;
    background: #fafafa;
    padding: 2.4rem;
}

.table-card-bg.v2 {
    padding: 4.2rem;
}

.tldr-top h5,
.title-24 {
    color: #171717;
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
}

.bullet-point {
    display: grid;
    gap: 1.6rem;
}

.mb-16 {
    margin-bottom: 1.6rem;
}

/* ================= ai-section =================== */
.pb-32 {
    padding-bottom: 3.2rem;
}

.pt-32 {
    padding-top: 3.2rem;
}

.pl-32 {
    padding-left: 3.2rem;
}

.pr-32 {
    padding-right: 3.2rem;
}

.pr-24 {
    padding-right: 2.4rem;
}

.pl-24 {
    padding-left: 2.4rem;
}

.pt-24 {
    padding-top: 2.4rem;
}

.pb-24 {
    padding-bottom: 2.4rem;
}

.mt-32 {
    margin-top: 3.2rem;
}

.mb-32 {
    margin-bottom: 3.2rem;
}

.table-left ol,
.table-left ul:not(.bullet-point) {
    padding-left: 4rem;
}

.table-left ol li,
.table-left ul li {
    line-height: 3.6rem;
}

.f-500 {
    font-weight: 500;
}

/* =============== Gutenberg article body (classless core blocks — Word paste workflow) ================ */
.table-left .post-block-content > [class*="wp-block-"] {
    margin-top: 0;
    margin-bottom: 0;
}

/* Prufio custom blocks — restore spacing after core reset above. */
.table-left .post-block-content > [class*="wp-block-prufio-"] {
    margin-bottom: 1.6rem;
}

.table-left
    .post-block-content
    > :not([class*="wp-block-prufio-"])
    + [class*="wp-block-prufio-"],
.table-left
    .post-block-content
    > [class*="wp-block-prufio-"]
    + [class*="wp-block-prufio-"] {
    margin-top: 3.2rem;
}

.table-left .post-block-content .wp-block-heading {
    margin-top: 0;
    font-weight: 500;
}

.table-left .post-block-content .wp-block-heading strong,
.table-left .post-block-content .wp-block-heading b {
    font-weight: inherit;
    font-family: inherit;
}

.table-left .post-block-content * + h2.wp-block-heading,
.table-left .post-block-content * + h3.wp-block-heading,
.table-left .post-block-content * + h4.wp-block-heading {
    margin-top: 4.2rem;
}

.table-left .post-block-content h2.wp-block-heading {
    font-family: var(--font-gt);
    font-size: 3.6rem;
    line-height: 4.32rem;
    letter-spacing: -0.048rem;
    margin-bottom: 1.6rem;
}

.table-left .post-block-content h3.wp-block-heading {
    font-family: var(--font-gt);
    font-size: 3rem;
    line-height: 3.6rem;
    letter-spacing: -0.048rem;
    margin-bottom: 1.6rem;
}

.table-left .post-block-content h4.wp-block-heading {
    font-family: var(--font-main);
    font-size: 2.4rem;
    line-height: 3.36rem;
    letter-spacing: -0.048rem;
}

.table-left .post-block-content h5.wp-block-heading {
    font-size: 2rem;
}

.table-left .post-block-content h6.wp-block-heading {
    font-size: 2.4rem;
    line-height: 3.6rem;
    font-family: var(--font-gt);
    margin-bottom: 1.6rem;
}

/* Deep-dive entry sub-lists (Reasons / Strengths / Weaknesses) — ACF .inner-text-block pt-22 pb-22 */
.table-left .post-block-content h4.wp-block-heading ~ h6.wp-block-heading {
    padding-top: 2.2rem;
}

.table-left .post-block-content h4.wp-block-heading ~ h6.wp-block-heading + ul,
.table-left
    .post-block-content
    h4.wp-block-heading
    ~ h6.wp-block-heading
    + .wp-block-list {
    padding-bottom: 2.2rem;
    margin-bottom: 0;
}

/* Recruit section (#recruit): ACF h3 has no bottom gap; image uses .image-fixed margins */
.table-left .post-block-content h3.wp-block-heading[id="recruit"] {
    margin-bottom: 0;
}

.table-left
    .post-block-content
    h3.wp-block-heading[id="recruit"]
    + .wp-block-image {
    margin-top: 4.7rem;
    margin-bottom: 3rem;
}

/* Recruit titled list heading uses title-30 in ACF, not title-24 */
.table-left
    .post-block-content
    h3.wp-block-heading[id="recruit"]
    ~ h6.wp-block-heading {
    font-size: 3rem;
    line-height: 3.6rem;
    padding-top: 1.6rem;
    margin-bottom: 1.6rem;
}

.table-left
    .post-block-content
    h3.wp-block-heading[id="recruit"]
    ~ h6.wp-block-heading
    + ul,
.table-left
    .post-block-content
    h3.wp-block-heading[id="recruit"]
    ~ h6.wp-block-heading
    + .wp-block-list {
    padding-bottom: 1.6rem;
    margin-bottom: 1.6rem;
}

/* FAQ block: ACF .pirmas-faq.mt-32 after .recruit-section.mb-16 */
.table-left .post-block-content .wp-block-prufio-faq.pirmas-faq {
    margin-top: 4.8rem;
}

.table-left
    .post-block-content
    .wp-block-prufio-faq.pirmas-faq
    .prufio-faq-heading,
.table-left .post-block-content .wp-block-prufio-faq.pirmas-faq > h3 {
    padding-bottom: 3.2rem;
}

.table-left .post-block-content .wp-block-paragraph {
    margin-bottom: 1.6rem;
}

/* #ai section only (heading + intro + ordered list) — adjacent siblings, not the whole article. */
.table-left .post-block-content h3.wp-block-heading[id="ai"],
.table-left
    .post-block-content
    h3.wp-block-heading[id="ai"]
    + .wp-block-paragraph,
.table-left .post-block-content h3.wp-block-heading[id="ai"] + p {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.table-left
    .post-block-content
    h3.wp-block-heading[id="ai"]
    + .wp-block-paragraph
    + ol,
.table-left .post-block-content h3.wp-block-heading[id="ai"] + p + ol {
    margin-left: 2.4rem;
    margin-right: 2.4rem;
}

.table-left .post-block-content ol,
.table-left .post-block-content ul {
    padding-left: 4rem;
    margin-bottom: 1.6rem;
    list-style-position: outside;
}

.table-left .post-block-content ol {
    list-style-type: decimal;
}

.table-left .post-block-content ul {
    list-style-type: disc;
}

.table-left .post-block-content ol li,
.table-left .post-block-content ul li,
.table-left .post-block-content .wp-block-list li {
    line-height: 3.6rem;
}

.table-left .post-block-content h4.wp-block-heading + .wp-block-image img {
    max-height: 29.4rem;
}

.table-left .post-block-content h4.wp-block-heading + .wp-block-image {
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
}

.table-left .post-block-content .wp-block-image {
    margin: 2.2rem 0;
}

.table-left .post-block-content .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 1.6rem;
    object-fit: cover;
}

.table-left .post-block-content .prufio-callout-content ul,
.table-left .post-block-content .prufio-callout-content ol,
.table-left .post-block-content .prufio-callout-content .wp-block-list {
    padding-left: 4rem;
    margin-top: 0;
    margin-bottom: 1.6rem;
    list-style-position: outside;
}

.table-left .post-block-content .prufio-callout-content ul,
.table-left .post-block-content .prufio-callout-content ul.wp-block-list {
    list-style-type: disc;
}

.table-left .post-block-content .prufio-callout-content ol,
.table-left .post-block-content .prufio-callout-content ol.wp-block-list {
    list-style-type: decimal;
}

.table-left .post-block-content .prufio-callout-content > :last-child,
.table-left .post-block-content .prufio-callout-content .wp-block-list li > p {
    margin-bottom: 0;
}

/* Gutenberg image with Prufio "mobile fixed size" — fixed height on mobile only. */
.table-left .post-block-content .wp-block-image.sintra-ai-img {
    margin: 2.2rem 0;
}

@media (max-width: 991px) {
    .table-left .post-block-content .wp-block-image.sintra-ai-img img {
        height: 29.4rem;
        object-fit: cover;
    }
}

/* Gutenberg list-item blocks may wrap copy in <p> — keep inline like ACF. */
.table-left .post-block-content ol li > p,
.table-left .post-block-content ul li > p,
.table-left .post-block-content .wp-block-list li > p {
    display: inline;
    margin-bottom: 0;
}

.table-left .post-block-content ol li > p:first-child:not(:only-child) {
    margin-bottom: 0;
}

.table-left .post-block-content .wp-block-list li strong {
    font-weight: 500;
}

/* =============== Software ================ */
.table-card {
    color: #07443b;
}

.border-left-20 {
    padding-left: 2rem;
    border-left: 0.3rem solid #07443b;
}

.f-600 {
    font-weight: 600;
}

.table-card-icon {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.table-card-icon h6 {
    margin-bottom: 0;
    padding-bottom: 0;
}

.table-card-bg-red {
    background: #15352f;
    color: #fff;
}

.title-20 {
    font-size: 2rem;
}

.table-car .text-16 {
    margin: 1.2rem 0 3.2rem;
    opacity: 0.8;
}

.table-car a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    line-height: 2rem;
    font-size: 1.4rem;
    color: #000000;
    background: #fff;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    border-radius: 10rem;
    font-weight: 500;
    transition: 0.35s ease;
}

.table-cart a:hover {
    background: #f1f1f1;
}

.car-img {
    width: 13rem;
}

.table-car {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 12.5rem;
}

.table-car:not(.table-car-v2) .table-card-left--no-desc,
.table-car:not(.table-car-v2) .table-card-left:not(:has(.promo-card-desc)) {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.my-22 {
    margin: 2.2rem 0;
}

.pb-22 {
    padding-bottom: 2.2rem;
}

.pt-22 {
    padding-top: 2.2rem;
}

.text-blue {
    color: #3b82f6;
}

.sintra-ai-img {
    border-radius: 1.6rem;
    object-fit: cover;
    height: 29.4rem;
}

.title-30 {
    font-size: 3rem;
    line-height: 3.6rem;
}

/* ================ Recruit section =============== */

.image-fixed {
    /* height: 26rem; */
    border-radius: 1.6rem;
    margin: 4.7rem 0 3rem;
}

/* ================ pirmas-faq  =============== */
.pirmas-faq .acc-body {
    color: #404040;
}

.pirmas-faq .acc-item {
    background: #fbfbfb;
}

.pirmas-faq .acc-item:not(:last-child) {
    margin-bottom: 1.4rem;
}

.pirmas-faq {
    margin-bottom: 1.6rem;
}

/* ================ social  =============== */
.social {
    gap: 1.6rem;
    align-items: center;
    padding: 2.4rem 0 1.6rem;
    border-top: 0.1rem solid #e9eaeb;
}

.social ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.2rem;
    padding-left: 0;
}

.social p {
    font-size: 1.7rem;
    color: #535862;
    margin: 0;
}

.social ul li a {
    width: 4.8rem;
    height: 4.8rem;
    border: 0.1rem solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
}

.social ul li a:hover {
    background: #e5e7eb;
}

/* ================ tag =============== */
.tag {
    padding: 2.4rem 0 1.6rem;
    border-top: 0.1rem solid #e9eaeb;
    max-width: 78.7rem;
}

.tag h6 {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.tag ul {
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
    gap: 0 3.2rem;
    list-style: none;
    padding-left: 0;
}

.tag ul li a {
    color: #000000;
    opacity: 0.7;
    line-height: 4.4rem;
    font-weight: 500;
    font-size: 1.4rem;
}

.tag ul li a:hover {
    opacity: 1;
    text-decoration: none;
}

.about-prufio img {
    width: 10.1rem;
    filter: brightness(0) saturate(100%) invert(20%) sepia(13%) saturate(3092%)
        hue-rotate(124deg) brightness(92%) contrast(94%);
}

.about-prufio {
    display: flex;
    align-items: center;
    gap: 4.4rem;
    padding: 2.4rem 0 1.6rem;
    border-top: 0.1rem solid #e9eaeb;
}

.ap-right h5 {
    color: #0f172a;
    font-weight: 700;
    line-height: 2.8rem;
    margin-bottom: 0.8rem;
}

.ap-right p {
    color: #1e293b;
}

.ap-right a {
    line-height: 2.4rem;
    font-size: 1.4rem;
    color: #15352f;
    text-decoration: none;
    display: block;
}

.ap-right a:hover {
    opacity: 0.5;
    color: #000;
}

/* =================== table-right =============== */
.table-right {
    position: sticky;
    top: 9.8rem;
}

.table-right .car-img {
    width: 7.2rem;
}

.table-car-v2 {
    justify-content: space-between;
    display: flex;
    margin: 0;
    padding: 2.4rem 1rem 2.4rem 2.4rem;
    border-radius: 1.6rem;
}

.table-car-v2 .table-card-left {
    display: grid;
    gap: 1.6rem;
    width: 18rem;
}

.table-contents .container > .row {
    --bs-gutter-x: 4rem;
    --bs-gutter-y: 0;
}

.pirmas-hero .container > .row {
    --bs-gutter-x: 5.5rem;
    --bs-gutter-y: 0;
}

.table-right .table-card-bg.v2 hr {
    border-color: #e5e7eb;
    opacity: 1;
    margin: 1.6rem 0;
}

.table-right .table-card-bg.v2 {
    padding: 1.6rem 2.4rem 1.6rem 2.4rem;
    background: #fafafa;
    margin: 4rem 0;
}

.table-right .table-card-bg.v2 h5 {
    font-size: 1.9rem;
    font-weight: 500;
    color: #171717;
    font-family: var(--font-gt);
}

.table-right .table-card-bg.v2 ol li a {
    color: #15352f;
    font-size: 1.4rem;
    text-decoration: none;
    transition: 0.2s;
}

.table-right .table-card-bg.v2 ol {
    display: grid;
    gap: 0.8rem;
}

.table-right.sticky-table .article-toc-scroll {
    max-height: 38rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
    padding-right: 0.4rem;
    margin-right: -0.4rem;
}

.table-right.sticky-table .article-toc-scroll::-webkit-scrollbar {
    width: 0.4rem;
}

.table-right.sticky-table .article-toc-scroll::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 0.4rem;
}

.table-right.sticky-table .article-toc-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.table-right .table-card-bg.v2 ol li a:hover {
    color: #597a52;
}

.active-li {
    color: #597a52;
    font-weight: 600;
}

.stars-review ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
}

.stars-review-top {
    display: flex;
    align-items: center;
    color: #0f172a;
    font-weight: 700;
    gap: 2.4rem;
}

.stars-review {
    padding: 1.6rem 2.4rem;
    border-radius: 1.6rem;
    background: #fafafa;
    gap: 1.6rem;
    display: grid;
}

.stars-review-bottom {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 1.6rem;
}

.stars-review-bottom span {
    color: #0f172a;
    font-size: 1.2rem;
}

/* ================ blog-area.v2 ================= */
.pricing-header.v2 {
    text-align: left;
    margin-bottom: 4.8rem;
}

.blog-area.v2 {
    background: #fff;
    padding: 0 0 9rem;
}

.blog-area.v2 .row {
    margin-bottom: 0;
    --bs-gutter-x: 3.2rem;
    --bs-gutter-y: 2.4rem;
}

/* ============== scroll-progress ============ */
.scroll-progress-wrap {
    position: fixed;
    bottom: -0.8rem;
    left: 0;
    height: 0.8rem;
    width: 100%;
    background: #e8e8e8;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
    background: #15352f;
    z-index: 9999;
    transition: width 0.2s ease-out;
}

/* Post article rating (AJAX) */
.prufio-rate-btn {
    background: none;
    border: 0;
    padding: 0;
    line-height: 0;
    cursor: pointer;
}

.prufio-post-rating.is-rated .prufio-rate-btn {
    cursor: default;
}

.prufio-post-rating:not(.is-rated) .prufio-rate-btn.is-hover .prufio-star-path {
    fill: #fdb022;
    stroke: #fdb022;
}

/* ─── YouTube Video Modal ───────────────────────────── */
.yt-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.yt-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.yt-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

.yt-modal-dialog {
    position: relative;
    width: min(1200px, 94vw);
    aspect-ratio: 16 / 9;
    z-index: 1;
    transform: scale(0.92);
    transition: transform 0.25s ease;
}

.yt-modal.open .yt-modal-dialog {
    transform: scale(1);
}

.yt-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.yt-modal-close:hover {
    opacity: 1;
}

.yt-modal-embed,
.yt-modal-embed iframe,
.yt-modal-embed video {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: 10px;
    background: #000;
}
