:root,
[data-bs-theme="light"] {
    --bs-body-bg: #ffffff;
    --bs-body-color: #494b5b;
    --bs-primary: #7c3aed;
    --bs-primary-rgb: 124, 58, 237;
    --bs-primary-hover: #6d28d9;
    --bs-primary-hover-rgb: 109, 40, 217;
    --bs-secondary: #ede9fe;
    --bs-secondary-rgb: 237, 233, 254;
    --bs-heading-color: #16181b;
    --inverse-color: #494b5b;
    --inverse-color-rgb: 73, 75, 91;
    --bs-link-color: var(--bs-primary);
    --nav-bg: #ffffff;
    --nav-color: #fff;
    --nav-hover-color: #1f6bff;
    --dropdown-bg: #ffffff;
    --dropdown-color: #1f6bff;
    --dropdown-hover-bg: #f7f7f7;
    --nav-inverse: #000000;
    --nav-inverse-alt: #ffffff;
}
html {
    zoom: 1;
}
body {
    font:
        1rem/1.7 "Inter",
        sans-serif;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.site-wrap {
    position: relative;
}
::-moz-selection {
    background-color: var(--bs-black);
    color: var(--bs-white);
}
::selection {
    background-color: var(--bs-black);
    color: var(--bs-white);
}
a {
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    color: var(--bs-primary);
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bs-heading-color);
}
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
    max-width: 1480px !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
@media (max-width: 1024px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl,
    .container-fluid {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}
@media (max-width: 767.98px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl,
    .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
.container-wide {
    max-width: 1600px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
}
@media (max-width: 1024px) {
    .container-wide {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}
@media (max-width: 767.98px) {
    .container-wide {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
.section {
    padding: 70px 0;
    scroll-margin-top: 60px;
}
@media (max-width: 767.98px) {
    .section {
        padding: 40px 0;
    }
}
.section.first-section {
    padding-top: 100px;
}
@media (min-width: 992px) {
    .section.first-section {
        padding-top: 130px;
    }
}
.text-heading-color {
    color: var(--bs-heading-color);
}
.shadow-sm {
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}
.shadow {
    -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
    box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}
.shadow-lg {
    -webkit-box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
    box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}
.list-checked {
    padding: 0;
    margin: 0;
    color: var(--bs-body-color);
}
.list-checked li {
    position: relative;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 10px;
}
.list-checked li i {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    display: inline-block;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--bs-primary);
    font-size: 20px;
}
.list-checked li:before {
    position: absolute;
    display: inline-block;
    left: 0;
    content: "";
    vertical-align: -0.125em;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.5625rem 1.5625rem;
    width: 1.5625rem;
    height: 1.5625rem;
}
.btn {
    padding: 12px 20px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border: 1px solid #fff0;
    border-radius: 7px;
    font-weight: 600;
    position: relative;
}
.btn:hover,
.btn:active,
.btn:focus {
    color: var(--bs-white);
    background-color: var(--bs-primary-hover) !important;
    border: 1px solid var(--bs-primary-hover) !important;
}
.btn.btn-white.hover-outline {
    background-color: var(--bs-white) !important;
    color: var(--bs-black) !important;
    border: 1px solid transparent !important;
}
.btn.btn-white.hover-outline:hover {
    color: var(--bs-white) !important;
    background-color: transparent !important;
    border: 1px solid var(--bs-white) !important;
}
.btn.btn-white-outline {
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2) !important;
    color: var(--inverse-color) !important;
    background-color: #fff0;
}
.btn.btn-white-outline:hover,
.btn.btn-white-outline:focus,
.btn.btn-white-outline:active {
    background-color: transparent !important;
    border: 1px solid rgba(var(--inverse-color-rgb), 0.5) !important;
}
.block-squares {
    position: absolute;
    bottom: -12px;
    right: 0;
    z-index: 1;
    width: auto;
}
.form-control {
    padding-top: 10px;
    padding-bottom: 10px;
    border-width: 1px;
    font-size: 16px;
    background-color: #fff0;
    border-color: rgba(var(--inverse-color-rgb), 0.1);
}
.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--bs-primary);
}
.a-link i {
    font-size: 26px;
    margin-left: 10px;
    -webkit-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
}
.a-link:hover i {
    margin-left: 15px;
}
.page-title {
    padding-top: 100px !important;
    padding-bottom: 50px !important;
    background-color: rgba(var(--inverse-color-rgb), 0.03);
}
.special-link .icons {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.special-link .icons i {
    font-size: 25px;
    position: relative;
    display: inline-block;
    position: absolute;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}
.special-link .icons i.icon-1 {
    opacity: 1;
    visibility: visible;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link .icons i.icon-2 {
    opacity: 0;
    visibility: hidden;
    top: 80%;
    left: 20%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover .icons .icon-1 {
    opacity: 0;
    visibility: hidden;
    top: 20%;
    left: 80%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover .icons .icon-2 {
    opacity: 1;
    visibility: visible;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.fbs__net-navbar {
    position: absolute;
    top: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 99999;
    width: 100%;
    background-color: transparent !important;
    border: none;
}
@media (min-width: 992px) {
    .fbs__net-navbar {
        padding-top: 0;
        padding-bottom: 0;
    }
}
.fbs__net-navbar > .container {
    position: relative;
}
.fbs__net-navbar.relative {
    position: absolute;
}
.fbs__net-navbar .navbar-brand {
    color: var(--bs-white);
    font-size: 30px;
    font-weight: 700;
}
.fbs__net-navbar .navbar-brand .logo.dark {
    display: none;
}
.fbs__net-navbar .navbar-brand .logo.light {
    display: block;
}
.fbs__net-navbar .navbar-nav > li > .nav-link {
    position: relative;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.9375rem;
    color: rgba(var(--bs-white-rgb), 1);
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    position: relative;
}
@media (max-width: 991.98px) {
    .fbs__net-navbar .navbar-nav > li > .nav-link {
        color: var(--inverse-color);
    }
}
.fbs__net-navbar .navbar-nav > li > .nav-link:before {
    content: "";
    position: absolute;
    width: calc(100% - 20px);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    border-radius: 5px;
    height: 1.5px;
    bottom: 0;
    left: 10px;
    background: currentcolor;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.35s ease-out;
    transition: -webkit-transform 0.35s ease-out;
    transition: transform 0.35s ease-out;
    transition:
        transform 0.35s ease-out,
        -webkit-transform 0.35s ease-out;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover,
.fbs__net-navbar .navbar-nav > li > .nav-link:focus {
    color: var(--bs-white);
}
@media (max-width: 991.98px) {
    .fbs__net-navbar .navbar-nav > li > .nav-link:hover,
    .fbs__net-navbar .navbar-nav > li > .nav-link:focus {
        color: var(--inverse-color) !important;
    }
}
@media (max-width: 767.98px) {
    .fbs__net-navbar .navbar-nav > li > .nav-link {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active {
    color: var(--bs-white);
}
@media (max-width: 991.98px) {
    .fbs__net-navbar .navbar-nav > li > .nav-link.active {
        color: var(--inverse-color);
    }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active:before {
    content: "";
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle::after {
    display: none;
    content: "";
}
@media (max-width: 991.98px) {
    .fbs__net-navbar .navbar-nav > li > .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.fbs__net-navbar .navbar-nav .dropdown-menu {
    background-color: var(--nav-bg);
}
.fbs__net-navbar .navbar-nav .dropdown-menu .nav-link:hover {
    background-color: var(--dropdown-hover-bg) !important;
    color: var(--inverse-color);
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
    display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle .bi-chevron-down {
    margin-left: 0.5rem;
}
.fbs__net-navbar .fbs__net-navbar-toggler {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    background-color: var(--bs-black);
    color: var(--bs-white);
    border: none;
    display: none;
}
@media (max-width: 991.98px) {
    .fbs__net-navbar .fbs__net-navbar-toggler {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.fbs__net-navbar .navbar-brand {
    margin-right: 0 !important;
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
    border: none !important;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
    box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
}
@media (min-width: 992px) {
    .fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
    .fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
    .fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
        padding-left: 10px;
        padding-right: 10px;
        width: 200px;
        border: none;
    }
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .nav-link {
    font-size: 0.875rem;
    padding: 10px 10px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    border-radius: 0.5rem;
}
@media (min-width: 992px) {
    .fbs__net-navbar .navbar-nav .dropdown:hover > .dropdown-menu,
    .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu,
    .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
        display: block;
        -webkit-animation: fadeInUp 0.3s ease;
        animation: fadeInUp 0.3s ease;
    }
}
@media (min-width: 992px) {
    .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        -webkit-animation: fadeInRight 0.3s ease;
        animation: fadeInRight 0.3s ease;
    }
}
@media (min-width: 992px) {
    .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        right: 100%;
        -webkit-animation: fadeInLeft 0.3s ease;
        animation: fadeInLeft 0.3s ease;
    }
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::before {
    display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
    display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a,
.fbs__net-navbar .navbar-nav li.dropstart > a {
    position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a .bi,
.fbs__net-navbar .navbar-nav li.dropstart > a .bi {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 991.98px) {
    .fbs__net-navbar .navbar-nav li.dropend > a .bi,
    .fbs__net-navbar .navbar-nav li.dropstart > a .bi {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        margin-top: -10px;
    }
}
.fbs__net-navbar .navbar-nav li.dropend > a::after,
.fbs__net-navbar .navbar-nav li.dropstart > a::after {
    display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a {
    position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a:hover {
    background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropend > a .caret {
    position: absolute;
    right: 10px;
}
.fbs__net-navbar .navbar-nav li.dropstart > a {
    position: relative;
}
.fbs__net-navbar .navbar-nav li.dropstart > a:hover {
    background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropstart > a .caret {
    position: absolute;
    left: 10px;
}
.fbs__net-navbar .navbar-toggler:hover,
.fbs__net-navbar .navbar-toggler:focus,
.fbs__net-navbar .navbar-toggler:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.fbs__net-navbar .header-social a {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    color: var(--bs-white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
    background-color: #fff0;
}
.fbs__net-navbar .header-social a:hover {
    background-color: rgba(var(--bs-white-rgb), 0.1);
}
@media (min-width: 992px) {
    .fbs__net-navbar .header-social a {
        color: var(--bs-white);
    }
}
.fbs__net-navbar .header-social .btn {
    width: auto !important;
    height: auto !important;
    background-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
@media (max-width: 575.98px) {
    .fbs__net-navbar .header-social .btn {
        display: none;
    }
}
.fbs__net-navbar.active {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--nav-bg) !important;
    -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
    box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
}
.fbs__net-navbar.active .navbar-brand {
    color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .navbar-brand .logo.dark {
    display: block;
}
.fbs__net-navbar.active .navbar-brand .logo.light {
    display: none;
}
.fbs__net-navbar.active .nav-link {
    color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .nav-link:hover {
    color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .header-social a {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    color: var(--inverse-color);
}
.fbs__net-navbar.active .header-social a:hover {
    background-color: rgba(var(--inverse-color-rgb), 0.1);
}
@media (min-width: 992px) {
    .fbs__net-navbar.active .header-social a {
        color: rgba(var(--inverse-color-rgb), 1) !important;
    }
}
.fbs__net-navbar.active .header-social .btn {
    width: auto !important;
    height: auto !important;
    background-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .dropdown-toggle:hover {
    color: var(--inverse-color) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .nav-link.dropdown-toggle::after {
    display: none;
    content: "";
}
.fbs__net-navbar.active .navbar-nav li.dropdown a:hover,
.fbs__net-navbar.active .navbar-nav li.dropend a:hover,
.fbs__net-navbar.active .navbar-nav li.dropstart a:hover {
    color: var(--inverse-color) !important;
}
.fbs__net-navbar .fbs__net-icon-menu {
    display: block;
}
.fbs__net-navbar .fbs__net-icon-close {
    display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-menu {
    display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-close {
    display: block;
}
.fbs__net-navbar.dark {
    -webkit-box-shadow: 0 0 2px rgba(var(--inverse-color-rgb), 0.15);
    box-shadow: 0 0 2px rgba(var(--inverse-color-rgb), 0.15);
}
.fbs__net-navbar.dark .navbar-brand .logo.dark {
    display: block;
}
.fbs__net-navbar.dark .navbar-brand .logo.light {
    display: none;
}
.fbs__net-navbar.dark a {
    color: var(--inverse-color) !important;
}
.fbs__net-navbar.dark a:hover {
    color: var(--inverse-color);
}
.fbs__net-navbar.dark .header-social a:hover {
    background-color: rgba(var(--inverse-color-rgb), 0.05);
}
.fbs__net-navbar.dark ul li a {
    color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.dark ul li a:hover {
    color: var(--inverse-color) !important;
}
.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.dark {
    display: block;
}
.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.light {
    display: none;
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.hero__v6 .hero-subtitle {
    background: color-mix(in srgb, var(--bs-secondary), transparent 70%);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.hero__v6 .hero-title {
    font-size: 48px;
}
@media (max-width: 1199.98px) {
    .hero__v6 .hero-title {
        font-size: 40px;
    }
}
@media (max-width: 991.98px) {
    .hero__v6 .hero-title {
        font-size: 30px;
    }
}
.hero__v6 .logos .logos-title {
    font-size: 12px;
    letter-spacing: 1px;
    color: color-mix(in srgb, var(--bs-primary), transparent 10%);
}
.hero__v6 .logos img {
    width: 140px;
}
.hero__v6 .hero-img {
    position: relative;
}
.hero__v6 .hero-img .img-main {
    position: relative;
    z-index: 9;
}
.hero__v6 .hero-img .img-card {
    z-index: 10;
    border-radius: 20px;
    -webkit-box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
    box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
    position: absolute;
    max-width: 280px;
    bottom: -40px;
    left: -60px;
}
@media (max-width: 991.98px) {
    .hero__v6 .hero-img .img-card {
        left: 10px;
        max-width: 380px;
    }
}
@media (max-width: 575.98px) {
    .hero__v6 .hero-img .img-card {
        left: 10px;
        max-width: 280px;
    }
}
.features__v2 .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    color: var(--bs-primary);
}
.features__v2 .content {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
}
.features__v2 .btn-play i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: var(--bs-white);
    color: var(--bs-primary);
}
.about__v4 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.about__v4 .features li .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
}
.about__v4 .mission-statement {
    background-color: var(--bs-primary);
    position: relative;
    bottom: -20px;
    width: 100%;
}
.about__v4 .mission-statement h3 {
    font-size: 10px;
    color: var(--bs-secondary);
}
.about__v4 .mission-statement p {
    color: var(--bs-white);
}
.about__v4 .mission-icon {
    width: 50px;
    height: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    line-height: 50px;
    display: inline-block;
    background-color: rgba(var(--bs-secondary-rgb), 0.1);
}
.about__v4 .mission-icon i {
    color: var(--bs-secondary);
}
.pricing__v2 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.pricing__v2 .price-table {
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.pricing__v2 .price-table .price {
    color: var(--bs-heading-color);
}
.pricing__v2 .price-table .price strong {
    font-size: 40px;
}
.pricing__v2 .price-table .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border: 1px solid rgba(var(--bs-white-rgb), 0.2);
}
.pricing__v2 .popular {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}
.pricing__v2 .popular .price {
    color: var(--bs-secondary);
}
.pricing__v2 .popular h3 {
    color: var(--bs-white);
}
.pricing__v2 .popular p {
    color: var(--bs-white);
}
.pricing__v2 .popular .pricing-features h4 {
    font-size: 12px;
    color: var(--bs-secondary);
}
.howitworks__v1 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.howitworks__v1 .step-card {
    position: relative;
}
.howitworks__v1 .step-card .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    color: var(--bs-secondary);
    background-color: var(--bs-primary);
    font-size: 18px;
}
.howitworks__v1 .arch-line {
    position: absolute;
    top: 15px;
    width: 150px;
    right: 0;
    left: calc(100% + 24px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media (max-width: 991.98px) {
    .howitworks__v1 .arch-line {
        display: none;
    }
}
.howitworks__v1 .arch-line.reverse {
    top: 20px;
}
.services__v3 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.services__v3 .icon {
    display: inline-block;
    position: relative;
    color: var(--bs-primary) !important;
}
.services__v3 .icon:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 40px;
    height: 40px;
    right: -10px;
    bottom: 0;
    border-radius: 50%;
    background-color: rgba(var(--bs-secondary-rgb), 1);
}
.services__v3 .icon svg {
    width: 50px;
}
.services__v3 .service-card {
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.faq__v2 {
    background-color: rgba(var(--inverse-color-rgb), 0.02);
}
.faq__v2 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.faq__v2 .custom-accordion {
    --bs-accordion-bg: var(--bs-body-bg);
    --bs-accordion-btn-icon: url("");
    --bs-accordion-btn-active-icon: url("");
}
.faq__v2 .custom-accordion .accordion-button {
    position: relative;
    padding-right: 50px;
}
.faq__v2 .custom-accordion .accordion-button::after {
    content: "\f4fe";
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    right: 20px;
    top: 15px;
    width: 18px;
    height: 14px;
    font-size: 30px;
    color: var(--inverse-color);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    line-height: 1;
    position: absolute;
    -webkit-font-smoothing: antialiased;
}
.faq__v2 .custom-accordion .accordion-button:not(.collapsed)::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    content: "\f2ea";
}
.faq__v2 .custom-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--bs-heading-color);
    padding-top: 20px;
    padding-bottom: 20px;
    border: none;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: #fff0;
    color: var(--inverse-color);
    -webkit-box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
    box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
}
.faq__v2 .custom-accordion .accordion-item .accordion-body {
    border-top: none;
}
.stats__v3 .content {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    overflow: hidden;
    position: relative;
}
.stats__v3 .content h3 {
    color: var(--bs-secondary);
}
.stats__v3 .content .rounded-borders {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
}
.stats__v3 .content .rounded-borders .rounded-border-1,
.stats__v3 .content .rounded-borders .rounded-border-2,
.stats__v3 .content .rounded-borders .rounded-border-3 {
    border: 1px solid var(--bs-secondary);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: absolute;
}
.stats__v3 .content .rounded-borders .rounded-border-1 {
    right: 20px;
    top: 20px;
}
.stats__v3 .content .rounded-borders .rounded-border-2 {
    right: 40px;
    top: 40px;
}
.testimonials__v2 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.testimonials__v2 .testimonial {
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.testimonials__v2 .testimonial-author .author-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
}
.contact__v2 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.contact__v2 .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
    border-radius: 50%;
}
.footer {
    background-color: rgba(var(--inverse-color-rgb), 0.02);
    font-size: 15px;
}
.footer h2,
.footer h3,
.footer h4 {
    font-size: 16px;
}
.footer ul li {
    padding: 0;
    margin: 0 0 10px 0;
}
.footer a {
    color: rgba(var(--inverse-color-rgb), 0.6);
    text-decoration: none;
}
.footer a:hover {
    color: var(--inverse-color);
}
.footer a .badge {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}
.footer a:hover .badge {
    background-color: rgba(var(--bs-primary-rgb), 1);
    border: 1px solid #fff0;
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}
.pricing-card-custom:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 25px 40px -10px rgb(124 58 237 / 0.16) !important;
    border-color: rgb(124 58 237 / 0.3) !important;
    z-index: 5 !important;
}
.pricing-card-custom.active-card {
    background: #0b0f19 !important;
    border-color: transparent !important;
    box-shadow: 0 25px 50px -12px rgb(11 15 25 / 0.25) !important;
}
.btn-pricing-cta {
    width: auto;
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    border: none;
    background: #fff0;
    color: #7c3aed;
    text-decoration: underline !important;
    transition: all 0.2s ease;
    display: inline-block;
}
.pricing-card-custom .btn-pricing-cta:hover {
    color: #6d28d9;
}
.pricing-card-custom.active-card .btn-pricing-cta {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    background: #7c3aed !important;
    color: #ffffff !important;
}
.pricing-card-custom.active-card .btn-pricing-cta:hover {
    background: #6d28d9 !important;
}
.pricing-card-custom.active-card h3,
.pricing-card-custom.active-card .price-number,
.pricing-card-custom.active-card .price-period,
.pricing-card-custom.active-card .pricing-subtitle,
.pricing-card-custom.active-card .feature-item {
    color: #ffffff !important;
}
.pricing-card-custom.active-card .pricing-subtitle {
    opacity: 0.75;
}
.pricing-card-custom .feature-checkmark {
    stroke: #475569;
}
.pricing-card-custom.active-card .feature-checkmark {
    stroke: #10b981;
}
.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #7c3aed;
    color: #fff;
    background-color: #fff0;
    color: var(--inverse-color);
    -webkit-box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
    box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
}
.faq__v2 .custom-accordion .accordion-item .accordion-body {
    border-top: none;
}
.stats__v3 .content {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    overflow: hidden;
    position: relative;
}
.stats__v3 .content h3 {
    color: var(--bs-secondary);
}
.stats__v3 .content .rounded-borders {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
}
.stats__v3 .content .rounded-borders .rounded-border-1,
.stats__v3 .content .rounded-borders .rounded-border-2,
.stats__v3 .content .rounded-borders .rounded-border-3 {
    border: 1px solid var(--bs-secondary);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: absolute;
}
.stats__v3 .content .rounded-borders .rounded-border-1 {
    right: 20px;
    top: 20px;
}
.stats__v3 .content .rounded-borders .rounded-border-2 {
    right: 40px;
    top: 40px;
}
.testimonials__v2 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.testimonials__v2 .testimonial {
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.testimonials__v2 .testimonial-author .author-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
}
.contact__v2 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.contact__v2 .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
    border-radius: 50%;
}
.footer {
    background-color: rgba(var(--inverse-color-rgb), 0.02);
    font-size: 15px;
}
.footer h2,
.footer h3,
.footer h4 {
    font-size: 16px;
}
.footer ul li {
    padding: 0;
    margin: 0 0 10px 0;
}
.footer a {
    color: rgba(var(--inverse-color-rgb), 0.6);
    text-decoration: none;
}
.footer a:hover {
    color: var(--inverse-color);
}
.footer a .badge {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}
.footer a:hover .badge {
    background-color: rgba(var(--bs-primary-rgb), 1);
    color: var(--bs-white);
}
.footer .quick-contact i {
    color: var(--inverse-color);
}
.footer .credits {
    font-size: 13.5px;
}
#back-to-top {
    position: fixed;
    bottom: 0;
    right: 20px;
    visibility: hidden;
    opacity: 0;
    background-color: #7c3aed !important;
    color: #ffffff !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 14px rgb(124 58 237 / 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#back-to-top i {
    font-size: 20px;
    color: #ffffff !important;
    transition: transform 0.2s ease;
}
#back-to-top:hover {
    background-color: #6d28d9 !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgb(124 58 237 / 0.5) !important;
}
#back-to-top.show {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}
.pricing-card-custom {
    background: #fff;
    border: 1px solid #fff0;
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}
.pricing-card-custom:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 25px 40px -10px rgb(124 58 237 / 0.16) !important;
    border-color: rgb(124 58 237 / 0.3) !important;
    z-index: 5 !important;
}
.pricing-card-custom.active-card {
    background: #0b0f19 !important;
    border-color: transparent !important;
    box-shadow: 0 25px 50px -12px rgb(11 15 25 / 0.25) !important;
}
.btn-pricing-cta {
    width: auto;
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    border: none;
    background: #fff0;
    color: #7c3aed;
    text-decoration: underline !important;
    transition: all 0.2s ease;
    display: inline-block;
}
.pricing-card-custom .btn-pricing-cta:hover {
    color: #6d28d9;
}
.pricing-card-custom.active-card .btn-pricing-cta {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    background: #7c3aed !important;
    color: #ffffff !important;
}
.pricing-card-custom.active-card .btn-pricing-cta:hover {
    background: #6d28d9 !important;
}
.pricing-card-custom.active-card h3,
.pricing-card-custom.active-card .price-number,
.pricing-card-custom.active-card .price-period,
.pricing-card-custom.active-card .pricing-subtitle,
.pricing-card-custom.active-card .feature-item {
    color: #ffffff !important;
}
.pricing-card-custom.active-card .pricing-subtitle {
    opacity: 0.75;
}
.pricing-card-custom .feature-checkmark {
    stroke: #475569;
}
.pricing-card-custom.active-card .feature-checkmark {
    stroke: #10b981;
}
.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #7c3aed;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgb(124 58 237 / 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.card-feature-hover {
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.05),
        0 2px 4px -1px rgb(0 0 0 / 0.03);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn {
    border-radius: 50px !important;
}
.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #b55fe6, #6366f1, #7c3aed) !important;
    background-size: 300% 300% !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease-in-out !important;
    animation: gradientShift 6s ease infinite !important;
}
.btn-primary:hover {
    background-size: 150% 150% !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgb(124 58 237 / 0.4);
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.privacy-content ul {
    list-style: none;
    padding-left: 0 !important;
}
.privacy-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.privacy-content ul li::before {
    content: "\2726";
    position: absolute;
    left: 0;
    top: 0;
    color: #7c3aed;
    font-size: 18px;
    transition: all 0.3s ease;
}
.privacy-content ul li:hover {
    transform: translateX(10px);
    color: #0f172a;
}
.privacy-content ul li:hover::before {
    color: #b55fe6;
    transform: rotate(90deg) scale(1.2);
}
.privacy-content h2 {
    color: #0f172a !important;
    position: relative;
    transition: transform 0.3s ease;
    display: block;
}
.privacy-content h2:hover {
    transform: translateX(5px);
}
.privacy-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: linear-gradient(135deg, #7c3aed, #b55fe6);
    transition: width 0.3s ease;
}
.privacy-content h2:hover::after {
    width: 100%;
}
.border-bottom h1 {
    background: linear-gradient(135deg, #0f172a, #7c3aed, #b55fe6, #0f172a);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    color: #fff0;
    animation: gradientShiftText 8s ease infinite;
}
@keyframes gradientShiftText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.border-bottom {
    border-bottom: 2px solid rgb(124 58 237 / 0.1) !important;
}
.gdpr-content h2 {
    color: #0f172a !important;
    position: relative;
    transition: all 0.3s ease;
    display: block;
    border-left: 4px solid #7c3aed;
    padding-left: 15px;
}
.gdpr-content h2:hover {
    transform: translateX(8px);
    border-left-color: #b55fe6;
}
.gdpr-content ul {
    list-style: none;
    padding-left: 0 !important;
}
.gdpr-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: #fff0;
    border-radius: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.gdpr-content ul li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #7c3aed;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gdpr-content ul li:hover {
    background: rgb(124 58 237 / 0.05);
    transform: scale(1.02);
    color: #0f172a;
    padding-left: 40px;
}
.gdpr-content ul li:hover::before {
    background: #b55fe6;
    border-radius: 4px;
    transform: rotate(45deg) scale(1.2);
}
.cookie-content h2 {
    color: #0f172a !important;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}
.cookie-content h2:hover {
    color: #7c3aed !important;
    transform: translateX(8px);
}
.cookie-content ul {
    list-style: none;
    padding-left: 0 !important;
}
.cookie-content ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.cookie-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7c3aed;
    transition: all 0.3s ease;
}
.cookie-content ul li:hover {
    color: #0f172a;
    font-weight: 500;
    transform: translateX(5px);
}
.cookie-content ul li:hover::before {
    background: #b55fe6;
    box-shadow: 0 0 8px rgb(181 95 230 / 0.5);
    transform: scale(1.5);
}
.docs-content h2 {
    color: #0f172a !important;
    position: relative;
    transition: all 0.4s ease;
    display: block;
    padding-left: 0;
    border-bottom: 1px solid rgb(124 58 237 / 0.2);
    padding-bottom: 8px;
}
.docs-content h2:hover {
    color: #7c3aed !important;
    padding-left: 10px;
    border-bottom: 1px solid #b55fe6;
    box-shadow: inset 0 -6px 0 rgb(181 95 230 / 0.15);
}
.docs-content ul {
    list-style: none;
    padding-left: 0 !important;
}
.docs-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    color: #475569;
    padding-top: 4px;
    padding-bottom: 4px;
}
.docs-content ul li::before {
    content: "\276F";
    position: absolute;
    left: 4px;
    top: 4px;
    color: #7c3aed;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.3s ease;
}
.docs-content ul li:hover {
    color: #0f172a;
    transform: translateX(6px);
    background: linear-gradient(90deg, rgb(124 58 237 / 0.05) 0%, transparent 100%);
    border-radius: 4px;
}
.docs-content ul li:hover::before {
    color: #b55fe6;
    transform: translateX(4px) scale(1.2);
}
.api-content h2 {
    color: #0f172a !important;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}
.api-content h2::before {
    content: ">";
    color: #7c3aed;
    margin-right: 10px;
    font-family: monospace;
    font-weight: 800;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.api-content h2:hover {
    transform: translateX(4px);
}
.api-content h2:hover::before {
    content: ">_";
    opacity: 1;
    color: #b55fe6;
}
.api-content ul {
    list-style: none;
    padding-left: 0 !important;
}
.api-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    color: #475569;
}
.api-content ul li::before {
    content: "{}";
    font-family: monospace;
    position: absolute;
    left: 0;
    top: 2px;
    color: #7c3aed;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.3s ease;
}
.api-content ul li:hover {
    color: #0f172a;
    transform: translateX(8px);
}
.api-content ul li:hover::before {
    content: "{..}";
    color: #b55fe6;
}
.api-code-block {
    background: #0f172a;
    color: #f8fafc;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    margin-bottom: 25px;
    border-left: 4px solid #7c3aed;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    overflow-x: auto;
}
.guides-content h2 {
    color: #0f172a !important;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    padding-bottom: 5px;
}
.guides-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: #7c3aed;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.guides-content h2:hover {
    color: #7c3aed !important;
}
.guides-content h2:hover::after {
    width: 100%;
    background: linear-gradient(90deg, #7c3aed, #b55fe6);
    box-shadow: 0 2px 8px rgb(181 95 230 / 0.4);
}
.guides-content ul {
    list-style: none;
    padding-left: 0 !important;
}
.guides-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    color: #475569;
}
.guides-content ul li::before {
    content: "\00BB";
    position: absolute;
    left: 0;
    top: 0;
    color: #7c3aed;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    transition: all 0.3s ease;
}
.guides-content ul li:hover {
    color: #0f172a;
    transform: translateX(5px);
}
.guides-content ul li:hover::before {
    color: #b55fe6;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgb(181 95 230 / 0.6);
}
.card-feature-hover {
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.05),
        0 2px 4px -1px rgb(0 0 0 / 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-feature-hover:hover {
    transform: translateY(-6px) !important;
    box-shadow:
        0 20px 25px -5px rgb(124 58 237 / 0.15),
        0 8px 10px -6px rgb(124 58 237 / 0.1) !important;
    border-color: rgb(124 58 237 / 0.5) !important;
}
.about-badge {
    color: #7c3aed !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}
.about-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -1px !important;
    line-height: 1.2 !important;
}
.about-desc {
    font-size: 17px !important;
    line-height: 1.6 !important;
    color: #475569 !important;
}
.value-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 30px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.value-card:hover {
    border-color: rgb(124 58 237 / 0.25) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 20px -8px rgb(124 58 237 / 0.08) !important;
}
.avatar-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 12px rgb(124 58 237 / 0.15);
}
.join-cta-card {
    background: #0b0f19 !important;
    border-radius: 24px !important;
    padding: 50px 60px !important;
    border: 1px solid rgb(255 255 255 / 0.04) !important;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --bg: #ffffff;
    --bg2: #f8f9fa;
    --card: #ffffff;
    --card2: #f8f9fa;
    --border: #e5e7eb;
    --border2: #d1d5db;
    --accent: #7c3aed;
    --accent-light: #6d28d9;
    --accent-dim: rgba(124, 58, 237, 0.08);
    --green: #10b981;
    --green-dim: rgba(16, 185, 129, 0.15);
    --code-bg: #1e2433;
    --text: #16181b;
    --text-muted: #494b5b;
    --text-dim: #6c757d;
    --get: #2563eb;
    --post: #059669;
    --put: #d97706;
    --delete: #dc2626;
    --patch: #ea580c;
    --radius: 12px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
.old-nav-removed {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:
        box-shadow 0.3s,
        border-color 0.3s;
}
nav.scrolled {
    border-bottom-color: rgb(124 58 237 / 0.4);
    box-shadow: 0 0 30px rgb(124 58 237 / 0.12);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
    letter-spacing: -0.02em;
}
.nav-logo .diamond {
    color: var(--accent-light);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 6px rgb(109 40 217 / 0.3));
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}
.nav-links a.docs-active {
    color: var(--accent-light);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.btn-ghost-nav {
    padding: 0.42rem 1.1rem;
    border: 1px solid var(--border2);
    border-radius: 8px;
    color: var(--text-muted);
    background: #fff0;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-ghost-nav:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}
.btn-purple {
    padding: 0.42rem 1.2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #6d28d9);
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 0 0 0 #fff0;
}
.btn-purple:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgb(124 58 237 / 0.4);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all 0.3s;
}
.hero {
    position: relative;
    padding: 40px 0 24px;
    text-align: left;
    overflow: hidden;
    background: #fff0;
}
.hero-bg-grid,
.hero-glow-1,
.hero-glow-2 {
    display: none !important;
}
.hero-badge {
    display: inline-block;
    background: rgb(124 58 237 / 0.1);
    border: 1px solid rgb(124 58 237 / 0.2);
    color: var(--accent);
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    position: relative;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #16181b;
    margin-bottom: 1rem;
    position: relative;
}
.hero h1 span {
    color: var(--accent-light);
}
.hero-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 0 2.5rem;
    position: relative;
}
.hero-base-url {
    display: inline-block;
    background: var(--code-bg);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    position: relative;
    text-align: left;
    max-width: 480px;
    width: 100%;
}
.hero-base-url .base-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.hero-base-url code {
    font-family: "JetBrains Mono", monospace;
    color: var(--green);
    font-size: 0.95rem;
}
.copy-btn-hero {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: var(--border2);
    border: none;
    border-radius: 6px;
    color: var(--text-muted);
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.copy-btn-hero:hover {
    background: var(--accent);
    color: var(--text);
}
.copy-btn-hero.copied {
    background: var(--green);
    color: var(--text);
}
.quick-nav {
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 2rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    position: sticky;
    top: 64px;
    z-index: 990;
}
.qnav-pill {
    padding: 0.38rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border2);
    color: var(--text-muted);
    background: var(--card2);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.qnav-pill:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}
.qnav-pill.active {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--accent-light);
}
.main-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}
.api-section {
    margin-bottom: 4rem;
}
.api-section-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.api-section-sub {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: 0.97rem;
}
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--border2), transparent);
    margin-bottom: 1.75rem;
}
.dark-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}
.dark-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.dark-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    margin-bottom: 1rem;
}
.dark-card p:last-child {
    margin-bottom: 0;
}
.code-block {
    background: var(--code-bg);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    position: relative;
    margin: 0.75rem 0;
    overflow-x: auto;
}
.code-block pre {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.85rem;
    color: #c9d1d9;
    white-space: pre;
    line-height: 1.6;
}
.code-block .kw {
    color: #f97583;
}
.code-block .str {
    color: #9ecbff;
}
.code-block .num {
    color: #79c0ff;
}
.code-block .key {
    color: #e3b341;
}
.code-block .green-text {
    color: var(--green);
}
.code-block .muted-text {
    color: var(--text-muted);
}
.copy-btn {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    background: var(--border2);
    border: none;
    border-radius: 6px;
    color: var(--text-muted);
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.copy-btn:hover {
    background: var(--accent);
    color: var(--text);
}
.copy-btn.copied {
    background: var(--green);
    color: var(--text);
}
.callout-info {
    background: rgb(124 58 237 / 0.08);
    border: 1px solid rgb(124 58 237 / 0.25);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    font-size: 0.88rem;
    color: var(--accent-light);
    margin: 0.75rem 0;
}
.callout-danger {
    background: rgb(220 38 38 / 0.08);
    border: 1px solid rgb(220 38 38 / 0.25);
    border-left: 3px solid #dc2626;
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    font-size: 0.88rem;
    color: #fca5a5;
    margin: 0.75rem 0;
}
.callout-security {
    background: rgb(16 185 129 / 0.06);
    border: 1px solid rgb(16 185 129 / 0.2);
    border-left: 3px solid var(--green);
    border-radius: 8px;
    padding: 1.1rem 1.4rem;
    margin-bottom: 1rem;
}
.callout-security .sec-title {
    font-weight: 700;
    color: var(--green);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.callout-security p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}
.method-badge {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 6px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}
.mb-get {
    background: rgb(37 99 235 / 0.2);
    color: #60a5fa;
    border: 1px solid rgb(37 99 235 / 0.35);
}
.mb-post {
    background: rgb(5 150 105 / 0.2);
    color: #34d399;
    border: 1px solid rgb(5 150 105 / 0.35);
}
.mb-put {
    background: rgb(217 119 6 / 0.2);
    color: #fcd34d;
    border: 1px solid rgb(217 119 6 / 0.35);
}
.mb-delete {
    background: rgb(220 38 38 / 0.2);
    color: #fca5a5;
    border: 1px solid rgb(220 38 38 / 0.35);
}
.mb-patch {
    background: rgb(234 88 12 / 0.2);
    color: #fdba74;
    border: 1px solid rgb(234 88 12 / 0.35);
}
.endpoint-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s;
}
.endpoint-card:hover {
    border-color: var(--border2);
}
.endpoint-card.open {
    border-color: rgb(124 58 237 / 0.3);
}
.endpoint-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.endpoint-header:hover {
    background: rgb(255 255 255 / 0.02);
}
.endpoint-card.open .endpoint-header {
    background: rgb(124 58 237 / 0.06);
}
.endpoint-path {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9rem;
    color: var(--text);
    flex: 1;
}
.endpoint-path span {
    color: var(--text-dim);
}
.endpoint-desc-short {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: auto;
    text-align: right;
    max-width: 200px;
}
.arrow-icon {
    width: 18px;
    height: 18px;
    color: var(--text-dim);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.endpoint-card.open .arrow-icon {
    transform: rotate(90deg);
}
.endpoint-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.endpoint-body-inner {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}
.endpoint-body-inner > p {
    color: var(--text-muted);
    font-size: 0.94rem;
    margin: 1rem 0;
}
.param-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 1.25rem 0 0.6rem;
}
.param-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
    border-radius: 8px;
    overflow: hidden;
}
.param-table th {
    background: var(--code-bg);
    color: var(--text-dim);
    font-weight: 600;
    text-align: left;
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.param-table td {
    padding: 0.65rem 1rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    vertical-align: top;
}
.param-table td:first-child {
    font-family: "JetBrains Mono", monospace;
    color: var(--accent-light);
    font-size: 0.85rem;
}
.param-table td:nth-child(2) {
    color: var(--text-dim);
    font-size: 0.83rem;
}
.param-table tr:nth-child(even) td {
    background: rgb(255 255 255 / 0.01);
}
.badge-required {
    background: rgb(220 38 38 / 0.15);
    color: #fca5a5;
    border: 1px solid rgb(220 38 38 / 0.3);
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
}
.badge-optional {
    background: rgb(100 116 139 / 0.15);
    color: var(--text-dim);
    border: 1px solid rgb(100 116 139 / 0.2);
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
}
.error-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.error-table th {
    background: var(--code-bg);
    color: var(--text-dim);
    text-align: left;
    padding: 0.75rem 1.1rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.error-table td {
    padding: 0.75rem 1.1rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    vertical-align: middle;
}
.error-table tr:hover td {
    background: rgb(255 255 255 / 0.015);
}
.err-code {
    font-family: "JetBrains Mono", monospace;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
}
.err-4xx {
    background: rgb(217 119 6 / 0.15);
    color: #fcd34d;
    border: 1px solid rgb(217 119 6 / 0.3);
}
.err-5xx {
    background: rgb(220 38 38 / 0.15);
    color: #fca5a5;
    border: 1px solid rgb(220 38 38 / 0.3);
}
.err-status {
    color: var(--accent-light);
    font-weight: 600;
}
.err-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
}
.support-card {
    background: linear-gradient(135deg, rgb(124 58 237 / 0.2), rgb(109 40 217 / 0.3));
    border: 1px solid rgb(124 58 237 / 0.35);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}
.support-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.support-card p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}
.support-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background: #fff;
    color: var(--accent);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgb(255 255 255 / 0.2);
}
.btn-dark-support {
    background: rgb(0 0 0 / 0.3);
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 0.15);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-dark-support:hover {
    border-color: rgb(255 255 255 / 0.35);
    color: var(--text);
}
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1.5rem;
}
.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 0.75rem;
    line-height: 1.6;
}
.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 1rem;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--text);
}
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom-text {
    color: var(--text-dim);
    font-size: 0.84rem;
}
.social-links {
    display: flex;
    gap: 0.75rem;
}
.social-link {
    width: 34px;
    height: 34px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.social-link:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
}
.social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
}
.social-link:hover svg {
    fill: var(--accent-light);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover {
    color: var(--text);
}
@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .endpoint-desc-short {
        display: none;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.article-container {
    
    margin: 0 auto;
    padding: 60px 0;
}
.back-btn {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
    transition: color 0.2s ease;
}
.back-btn:hover {
    color: #7c3aed;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #64748b;
}
.category-pill {
    background: #ede9fe;
    color: #7c3aed;
    font-weight: 800;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.article-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.article-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}
.author-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    margin-bottom: 40px;
}
.avatar-md {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #a78bfa;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-socials a {
    color: #94a3b8;
    font-size: 18px;
    margin-left: 15px;
    transition: color 0.2s ease;
}
.author-socials a:hover {
    color: #7c3aed;
}
.article-hero-img {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    margin-bottom: 40px;
}
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}
.article-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 15px 0;
}
.article-body ul {
    padding-left: 20px;
    margin-bottom: 25px;
}
.article-body ul li {
    margin-bottom: 10px;
}
.article-body blockquote {
    border-left: 3px solid #7c3aed;
    padding: 20px 25px;
    margin: 30px 0;
    background: #f8fafc;
    font-style: italic;
    color: #475569;
    border-radius: 0 8px 8px 0;
}
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px -4px rgb(0 0 0 / 0.08);
    margin: 30px auto;
    display: block;
    border: 1px solid #e2e8f0;
}
.article-body a {
    color: #7c3aed;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}
.article-body a:hover {
    color: #5b21b6;
}
.blog-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.25s ease;
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -8px rgb(124 58 237 / 0.1);
    border-color: rgb(124 58 237 / 0.3);
}
.blog-card-img {
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}
.blog-card-pill {
    background: rgb(255 255 255 / 0.25);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.avatar-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-faq-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
}
.blog-faq-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-accordion-item.active {
    border-color: #7c3aed;
    box-shadow: 0 4px 20px -4px rgb(124 58 237 / 0.08);
}
.faq-accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s ease;
}
.faq-accordion-header:hover {
    color: #7c3aed;
}
.faq-accordion-title {
    font-size: 16px;
    line-height: 1.5;
    padding-right: 15px;
}
.faq-accordion-icon {
    font-size: 18px;
    color: #64748b;
    transition:
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
    color: #7c3aed;
}
.faq-accordion-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-accordion-content {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}
[data-bs-theme="dark"] .article-title {
    color: #f8fafc !important;
}
[data-bs-theme="dark"] .article-subtitle {
    color: #94a3b8 !important;
}
[data-bs-theme="dark"] .article-body {
    color: #cbd5e1 !important;
}
[data-bs-theme="dark"] .article-body h2 {
    color: #f8fafc !important;
}
[data-bs-theme="dark"] .article-body blockquote {
    background: #0f172a !important;
    color: #94a3b8 !important;
    border-color: #7c3aed !important;
}
[data-bs-theme="dark"] .article-body img {
    border-color: #334155 !important;
    box-shadow: 0 4px 24px -4px rgb(0 0 0 / 0.3) !important;
}
[data-bs-theme="dark"] .article-body a {
    color: #a78bfa !important;
}
[data-bs-theme="dark"] .article-body a:hover {
    color: #c4b5fd !important;
}
[data-bs-theme="dark"] .author-box {
    border-color: #334155 !important;
}
[data-bs-theme="dark"] .author-box .text-dark {
    color: #f8fafc !important;
}
[data-bs-theme="dark"] .blog-faq-section {
    border-color: #334155 !important;
}
[data-bs-theme="dark"] .blog-faq-title {
    color: #f8fafc !important;
}
[data-bs-theme="dark"] .faq-accordion-item {
    background: #1e293b !important;
    border-color: #334155 !important;
}
[data-bs-theme="dark"] .faq-accordion-item.active {
    border-color: #7c3aed !important;
}
[data-bs-theme="dark"] .faq-accordion-header {
    color: #e2e8f0 !important;
}
[data-bs-theme="dark"] .faq-accordion-header:hover {
    color: #a78bfa !important;
}
[data-bs-theme="dark"] .faq-accordion-content {
    color: #94a3b8 !important;
}
[data-bs-theme="dark"] .blog-card {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
}
[data-bs-theme="dark"] .blog-card:hover {
    border-color: #7c3aed !important;
}
[data-bs-theme="dark"] .blog-card h3 {
    color: #f8fafc !important;
}
.blog-badge {
    color: #7c3aed !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}
.blog-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -1px !important;
    line-height: 1.2 !important;
}
.blog-desc {
    font-size: 17px !important;
    line-height: 1.6 !important;
    color: #475569 !important;
}
.blog-featured-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.25s ease;
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
}
.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -8px rgb(124 58 237 / 0.1);
    border-color: rgb(124 58 237 / 0.3);
}
.blog-featured-img {
    width: 45%;
    position: relative;
    min-height: 320px;
}
.blog-featured-pill {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgb(255 255 255 / 0.25);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.blog-featured-content {
    padding: 40px;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.25s ease;
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -8px rgb(124 58 237 / 0.1);
    border-color: rgb(124 58 237 / 0.3);
}
.blog-card-img {
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}
.blog-card-pill {
    background: rgb(255 255 255 / 0.25);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-filter-pill {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #fff;
    display: inline-block;
}
.blog-filter-pill.active,
.blog-filter-pill:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
}
.blog-search {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 10px 15px 10px 40px;
    font-size: 14px;
    width: 100%;
    outline: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%2394A3B8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>')
        no-repeat 15px center;
}
.blog-search:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgb(124 58 237 / 0.1);
}
.newsletter-box {
    background: #f8fafc;
    border: 1px solid rgb(124 58 237 / 0.1);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #fff;
    font-size: 14px;
}
.pagination-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}
.pagination-btn.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
}
.pagination-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #f8fafc;
    color: #94a3b8;
}
[data-bs-theme="dark"] .blog-featured-card,
[data-bs-theme="dark"] .blog-card,
[data-bs-theme="dark"] .blog-filter-pill,
[data-bs-theme="dark"] .pagination-btn {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}
[data-bs-theme="dark"] .blog-title {
    color: #f8fafc !important;
}
[data-bs-theme="dark"] .blog-desc {
    color: #94a3b8 !important;
}
[data-bs-theme="dark"] .blog-featured-card:hover,
[data-bs-theme="dark"] .blog-card:hover {
    border-color: #7c3aed;
}
[data-bs-theme="dark"] .newsletter-box {
    background: #0f172a;
    border-color: #1e293b;
}
[data-bs-theme="dark"] .blog-search {
    background-color: #1e293b;
    border-color: #334155;
    color: #f8fafc;
}
.blog-badge {
    color: #7c3aed !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}
.blog-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -1px !important;
    line-height: 1.2 !important;
}
.blog-desc {
    font-size: 17px !important;
    line-height: 1.6 !important;
    color: #475569 !important;
}
.cat-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    background: #fff;
    transition: all 0.25s ease;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: #0f172a;
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -8px rgb(124 58 237 / 0.1);
    border-color: rgb(124 58 237 / 0.3);
    color: #7c3aed;
}
.cat-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #7c3aed;
}
.cat-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}
[data-bs-theme="dark"] .cat-card {
    background: #1e293b;
    border-color: #334155;
    color: #f8fafc;
}
[data-bs-theme="dark"] .cat-card:hover {
    border-color: #7c3aed;
    color: #a78bfa;
}
[data-bs-theme="dark"] .blog-title {
    color: #f8fafc !important;
}
[data-bs-theme="dark"] .blog-desc {
    color: #94a3b8 !important;
}
:root {
    --cm-primary: #7c3aed;
    --cm-primary-dark: #6d28d9;
    --cm-primary-light: #f5f3ff;
    --cm-primary-lighter: #ede9fe;
    --cm-text-dark: #16181b;
    --cm-text-mid: #494b5b;
    --cm-text-light: #6c757d;
    --cm-surface: #ffffff;
    --cm-surface-alt: #f8f9fa;
    --cm-border: #e5e7eb;
    --cm-body-bg: #f8f9fa;
    --cm-font: "Inter", sans-serif;
    --cm-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --cm-radius-sm: 12px;
    --cm-radius-md: 16px;
    --cm-radius-lg: 20px;
    --cm-radius-xl: 30px;
}
body {
    font-family: var(--cm-font);
    background: var(--cm-body-bg);
    color: var(--cm-text-mid);
    overflow-x: hidden;
}
.cm-section {
    padding: 80px 0;
}
.cm-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cm-text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.cm-section__subtitle {
    font-size: 1.1rem;
    color: var(--cm-text-light);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.cm-hero {
    position: relative;
    padding: 40px 0 24px;
    background: #fff0;
    overflow: hidden;
}
.cm-hero::before {
    display: none;
}
.cm-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.cm-hero__heading {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cm-text-dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.cm-hero__heading span {
    background: linear-gradient(135deg, var(--cm-primary), #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.cm-hero__desc {
    font-size: 1.15rem;
    color: var(--cm-text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.cm-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.cm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--cm-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--cm-ease);
    cursor: pointer;
}
.cm-btn-primary:hover {
    background: var(--cm-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(124 58 237 / 0.35);
}
.cm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff0;
    color: var(--cm-primary);
    border: 2px solid var(--cm-primary);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--cm-ease);
    cursor: pointer;
}
.cm-btn-outline:hover {
    background: var(--cm-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(124 58 237 / 0.35);
}
.cm-hero__pills {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.cm-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgb(255 255 255 / 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgb(255 255 255 / 0.6);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cm-text-dark);
    box-shadow: 0 4px 20px rgb(0 0 0 / 0.06);
    animation: cmFloat 4s ease-in-out infinite;
}
.cm-pill:nth-child(2) {
    animation-delay: -1.3s;
}
.cm-pill:nth-child(3) {
    animation-delay: -2.6s;
}
.cm-pill__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: cmPulse 2s ease-in-out infinite;
}
.cm-pill__dot--green {
    background: #22c55e;
}
.cm-pill__dot--purple {
    background: var(--cm-primary);
}
.cm-pill__dot--blue {
    background: #3b82f6;
}
@keyframes cmFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes cmPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}
.cm-stats {
    background: var(--cm-surface);
    padding: 80px 0;
}
.cm-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cm-stat-card {
    background: var(--cm-surface);
    border: 1px solid var(--cm-border);
    border-radius: var(--cm-radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s var(--cm-ease);
}
.cm-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgb(124 58 237 / 0.12);
    border-color: rgb(124 58 237 / 0.2);
}
.cm-stat-card__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cm-primary-light), var(--cm-primary-lighter));
    border-radius: 50%;
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: var(--cm-primary);
}
.cm-stat-card__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cm-text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 6px;
}
.cm-stat-card__label {
    font-size: 0.95rem;
    color: var(--cm-text-light);
    font-weight: 500;
}
.cm-features {
    background: var(--cm-surface-alt);
    padding: 80px 0;
}
.cm-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cm-feature-card {
    background: var(--cm-surface);
    border: 1px solid var(--cm-border);
    border-radius: var(--cm-radius-lg);
    padding: 36px 28px;
    transition: all 0.35s var(--cm-ease);
    position: relative;
    overflow: hidden;
}
.cm-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--cm-radius-lg);
    border: 2px solid #fff0;
    transition: border-color 0.35s var(--cm-ease);
    pointer-events: none;
}
.cm-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgb(124 58 237 / 0.1);
}
.cm-feature-card:hover::after {
    border-color: rgb(124 58 237 / 0.25);
}
.cm-feature-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cm-primary), #9333ea);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #fff;
}
.cm-feature-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cm-text-dark);
    margin-bottom: 10px;
}
.cm-feature-card__desc {
    font-size: 0.95rem;
    color: var(--cm-text-light);
    line-height: 1.7;
    margin: 0;
}
.cm-discussions {
    background: var(--cm-surface);
    padding: 80px 0;
}
.cm-discussion-card {
    background: var(--cm-surface);
    border: 1px solid var(--cm-border);
    border-left: 4px solid #fff0;
    border-radius: var(--cm-radius-md);
    padding: 24px 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.35s var(--cm-ease);
}
.cm-discussion-card:hover {
    transform: translateX(4px);
    border-left-color: var(--cm-primary);
    box-shadow: 0 4px 20px rgb(0 0 0 / 0.06);
}
.cm-discussion-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    flex-shrink: 0;
}
.cm-discussion-card__avatar--1 {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}
.cm-discussion-card__avatar--2 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.cm-discussion-card__avatar--3 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}
.cm-discussion-card__avatar--4 {
    background: linear-gradient(135deg, #10b981, #34d399);
}
.cm-discussion-card__body {
    flex: 1;
    min-width: 0;
}
.cm-discussion-card__title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--cm-text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}
.cm-discussion-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--cm-text-light);
}
.cm-discussion-card__author {
    font-weight: 600;
    color: var(--cm-text-mid);
}
.cm-discussion-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cm-tag {
    display: inline-block;
    padding: 3px 12px;
    background: var(--cm-primary-light);
    color: var(--cm-primary);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 50px;
}
.cm-discussion-card__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}
.cm-reply-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    background: var(--cm-primary-lighter);
    color: var(--cm-primary);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 50px;
}
.cm-discussion-card__time {
    font-size: 0.8rem;
    color: var(--cm-text-light);
    white-space: nowrap;
}
.cm-platforms {
    background: var(--cm-surface-alt);
    padding: 80px 0;
}
.cm-platforms__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.cm-platform-card {
    background: var(--cm-surface);
    border: 1px solid var(--cm-border);
    border-radius: var(--cm-radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.35s var(--cm-ease);
    position: relative;
    overflow: hidden;
}
.cm-platform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s var(--cm-ease);
}
.cm-platform-card--discord::before {
    background: #5865f2;
}
.cm-platform-card--github::before {
    background: #24292e;
}
.cm-platform-card--linkedin::before {
    background: #0a66c2;
}
.cm-platform-card--reddit::before {
    background: #ff4500;
}
.cm-platform-card--slack::before {
    background: #4a154b;
}
.cm-platform-card:hover {
    transform: translateY(-6px);
}
.cm-platform-card--discord:hover {
    box-shadow: 0 12px 32px rgb(88 101 242 / 0.18);
}
.cm-platform-card--github:hover {
    box-shadow: 0 12px 32px rgb(36 41 46 / 0.15);
}
.cm-platform-card--linkedin:hover {
    box-shadow: 0 12px 32px rgb(10 102 194 / 0.18);
}
.cm-platform-card--reddit:hover {
    box-shadow: 0 12px 32px rgb(255 69 0 / 0.15);
}
.cm-platform-card--slack:hover {
    box-shadow: 0 12px 32px rgb(74 21 75 / 0.15);
}
.cm-platform-card__icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}
.cm-platform-card--discord .cm-platform-card__icon {
    color: #5865f2;
}
.cm-platform-card--github .cm-platform-card__icon {
    color: #24292e;
}
.cm-platform-card--linkedin .cm-platform-card__icon {
    color: #0a66c2;
}
.cm-platform-card--reddit .cm-platform-card__icon {
    color: #ff4500;
}
.cm-platform-card--slack .cm-platform-card__icon {
    color: #4a154b;
}
.cm-platform-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cm-text-dark);
    margin-bottom: 8px;
}
.cm-platform-card__desc {
    font-size: 0.88rem;
    color: var(--cm-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 42px;
}
.cm-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s var(--cm-ease);
    border: 2px solid;
}
.cm-platform-card--discord .cm-platform-btn {
    color: #5865f2;
    border-color: #5865f2;
}
.cm-platform-card--discord .cm-platform-btn:hover {
    background: #5865f2;
    color: #fff;
}
.cm-platform-card--github .cm-platform-btn {
    color: #24292e;
    border-color: #24292e;
}
.cm-platform-card--github .cm-platform-btn:hover {
    background: #24292e;
    color: #fff;
}
.cm-platform-card--linkedin .cm-platform-btn {
    color: #0a66c2;
    border-color: #0a66c2;
}
.cm-platform-card--linkedin .cm-platform-btn:hover {
    background: #0a66c2;
    color: #fff;
}
.cm-platform-card--reddit .cm-platform-btn {
    color: #ff4500;
    border-color: #ff4500;
}
.cm-platform-card--reddit .cm-platform-btn:hover {
    background: #ff4500;
    color: #fff;
}
.cm-platform-card--slack .cm-platform-btn {
    color: #4a154b;
    border-color: #4a154b;
}
.cm-platform-card--slack .cm-platform-btn:hover {
    background: #4a154b;
    color: #fff;
}
.cm-testimonials {
    background: var(--cm-surface);
    padding: 80px 0;
}
.cm-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cm-testimonial-card {
    background: var(--cm-surface);
    border: 1px solid var(--cm-border);
    border-radius: var(--cm-radius-lg);
    padding: 36px 28px;
    transition: all 0.35s var(--cm-ease);
    display: flex;
    flex-direction: column;
}
.cm-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgb(124 58 237 / 0.1);
}
.cm-testimonial-card__quote-icon {
    font-size: 2rem;
    color: var(--cm-primary);
    margin-bottom: 16px;
    opacity: 0.6;
}
.cm-testimonial-card__text {
    font-size: 1rem;
    color: var(--cm-text-mid);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}
.cm-testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.cm-testimonial-card__stars i {
    color: #f59e0b;
    font-size: 0.9rem;
}
.cm-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cm-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}
.cm-testimonial-card__avatar--1 {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}
.cm-testimonial-card__avatar--2 {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}
.cm-testimonial-card__avatar--3 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.cm-testimonial-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cm-text-dark);
    line-height: 1.3;
}
.cm-testimonial-card__role {
    font-size: 0.82rem;
    color: var(--cm-text-light);
}
.cm-cta {
    padding: 80px 0 100px;
    background: var(--cm-surface);
}
.cm-cta__inner {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    border-radius: var(--cm-radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cm-cta__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    pointer-events: none;
}
.cm-cta__heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}
.cm-cta__desc {
    font-size: 1.1rem;
    color: rgb(255 255 255 / 0.8);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}
.cm-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.cm-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: var(--cm-primary);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--cm-ease);
    cursor: pointer;
}
.cm-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
    color: var(--cm-primary-dark);
}
.cm-btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff0;
    color: #fff;
    border: 2px solid rgb(255 255 255 / 0.5);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--cm-ease);
    cursor: pointer;
}
.cm-btn-white-outline:hover {
    background: rgb(255 255 255 / 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .cm-hero__heading {
        font-size: 2.6rem;
    }
    .cm-section__title {
        font-size: 2rem;
    }
    .cm-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cm-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cm-platforms__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cm-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cm-cta__heading {
        font-size: 2rem;
    }
    .cm-cta__inner {
        padding: 56px 32px;
    }
}
@media (max-width: 768px) {
    .cm-hero {
        padding: 30px 0 30px;
    }
    .cm-hero__heading {
        font-size: 2rem;
    }
    .cm-hero__desc {
        font-size: 1rem;
    }
    .cm-section {
        padding: 56px 0;
    }
    .cm-section__title {
        font-size: 1.7rem;
    }
    .cm-section__subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    .cm-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .cm-stat-card {
        padding: 28px 20px;
    }
    .cm-stat-card__number {
        font-size: 2rem;
    }
    .cm-features__grid {
        grid-template-columns: 1fr;
    }
    .cm-discussion-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .cm-discussion-card__right {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }
    .cm-platforms__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cm-testimonials__grid {
        grid-template-columns: 1fr;
    }
    .cm-events__grid {
        grid-template-columns: 1fr;
    }
    .cm-cta__heading {
        font-size: 1.6rem;
    }
    .cm-cta__inner {
        padding: 44px 24px;
        border-radius: var(--cm-radius-lg);
    }
    .cm-cta__desc {
        font-size: 1rem;
    }
    .cm-pill {
        font-size: 0.82rem;
        padding: 10px 16px;
    }
    .cm-event-card {
        flex-direction: column;
        gap: 16px;
    }
}
.contact-badge {
    color: #7c3aed !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    display: block;
}
.contact-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -1px !important;
    line-height: 1.2 !important;
}
.contact-prop-card {
    background-color: #faf5ff !important;
    border: 1px solid #f3e8ff !important;
    border-radius: 16px !important;
    padding: 28px !important;
}
.contact-details-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgb(0 0 0 / 0.01) !important;
}
.contact-chat-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 24px !important;
}
.form-label-premium {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #0f172a !important;
    margin-bottom: 8px !important;
}
.input-premium-wrapper {
    position: relative !important;
}
.input-premium {
    height: 50px !important;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease !important;
    padding: 10px 16px !important;
}
.input-premium-icon-pad {
    padding-left: 44px !important;
}
.input-premium:focus {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 3px rgb(124 58 237 / 0.1) !important;
    outline: none !important;
}
.input-premium-icon {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
}
.select-chevron-icon {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    z-index: 10 !important;
}
.btn-submit-premium {
    background: #7c3aed !important;
    border: none !important;
    height: 50px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    color: #ffffff !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 12px rgb(124 58 237 / 0.15) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 0 24px !important;
}
.btn-submit-premium:hover {
    background: #6d28d9 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgb(124 58 237 / 0.25) !important;
}
.map-banner-card {
    background-color: #faf5ff !important;
    border: 1px solid #f3e8ff !important;
    border-radius: 20px !important;
    padding: 40px 20px !important;
}
.map-pin-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #7c3aed;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    box-shadow: 0 4px 10px rgb(124 58 237 / 0.2);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --amber: #7c3aed;
    --amber-light: #9333ea;
    --amber-dark: #6d28d9;
    --brown-deep: #16181b;
    --brown-dark: #ffffff;
    --brown-mid: #f8f9fa;
    --bg: #ffffff;
    --card-bg: #ffffff;
    --card-border: #e5e7eb;
    --text: #494b5b;
    --text-muted: #6c757d;
    --radius: 16px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Nunito", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
.old-nav-removed {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--brown-deep);
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}
nav.scrolled {
    box-shadow: 0 4px 24px rgb(124 58 237 / 0.18);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
}
.nav-logo .dot {
    width: 12px;
    height: 12px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--amber);
}
.nav-logo span {
    color: var(--amber);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--amber);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.btn-ghost {
    padding: 0.45rem 1.2rem;
    border: 1.5px solid rgb(124 58 237 / 0.4);
    border-radius: 8px;
    color: #f5f3ff;
    background: #fff0;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
}
.btn-amber {
    padding: 0.45rem 1.3rem;
    border-radius: 8px;
    background: var(--amber);
    color: var(--brown-deep);
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-amber:hover {
    background: var(--amber-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(124 58 237 / 0.4);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--amber);
    border-radius: 2px;
    transition: all 0.3s;
}
.hero {
    background: #fff0;
    padding: 40px 0 24px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.hero::before,
.hero::after {
    display: none;
}
.cookie-emoji {
    font-size: 7rem;
    display: block;
    margin: 0 auto 1.5rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgb(124 58 237 / 0.4));
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}
.hero-badge {
    display: inline-block;
    background: rgb(124 58 237 / 0.1);
    border: 1px solid rgb(124 58 237 / 0.2);
    color: #7c3aed;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: var(--brown-deep);
    line-height: 1.15;
    margin-bottom: 0.6rem;
}
.hero h1 span {
    color: #7c3aed;
}
.hero-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.hero-subtitle {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 0 2rem;
}
.hero-pills {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.hero-pill {
    background: #fff;
    border: 1px solid var(--card-border);
    color: var(--text);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}
section {
    padding: 5rem 1.5rem;
}
.container {
    max-width: 900px;
    margin: 0 auto;
}
.section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--brown-deep);
    margin-bottom: 0.5rem;
}
.section-sub {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.what-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 4px 24px rgb(0 0 0 / 0.05);
}
.what-text p {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}
.what-text p:last-child {
    margin-bottom: 0;
}
.cookie-diagram {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}
.cookie-core {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, #e9d5ff, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    box-shadow: 0 8px 32px rgb(124 58 237 / 0.15);
    position: relative;
    z-index: 2;
}
.callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}
.callout-dot {
    width: 10px;
    height: 10px;
    background: var(--amber-dark);
    border-radius: 50%;
    flex-shrink: 0;
}
.callout-label {
    background: var(--brown-deep);
    color: #f5f3ff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
}
.callout-line {
    position: absolute;
    background: var(--amber);
    height: 1.5px;
    transform-origin: left center;
}
.c1 {
    top: 22px;
    right: 10px;
    flex-direction: row-reverse;
}
.c2 {
    bottom: 22px;
    right: 10px;
    flex-direction: row-reverse;
}
.c3 {
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
}
.how-section {
    background: #fff;
}
.use-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.use-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.use-row:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgb(124 58 237 / 0.05);
}
.use-icon {
    width: 48px;
    height: 48px;
    background: rgb(124 58 237 / 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.use-info strong {
    display: block;
    font-weight: 800;
    color: var(--brown-deep);
    font-size: 0.98rem;
}
.use-info span {
    color: #6c757d;
    font-size: 0.9rem;
}
.types-section {
    background: var(--bg);
}
.cookie-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.cookie-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-left: 5px solid var(--amber);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 2px 16px rgb(124 58 237 / 0.07);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.cookie-card:hover {
    box-shadow: 0 6px 28px rgb(124 58 237 / 0.14);
    transform: translateY(-2px);
}
.card-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgb(124 58 237 / 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.card-body {
    flex: 1;
}
.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}
.card-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brown-deep);
}
.badge-always {
    background: rgb(16 185 129 / 0.1);
    color: #10b981;
    border: 1px solid rgb(16 185 129 / 0.2);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}
.status-dot {
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}
.card-desc {
    color: #6c757d;
    font-size: 0.96rem;
    line-height: 1.65;
}
.card-toggle-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.toggle-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}
.toggle-wrap {
    position: relative;
    display: inline-block;
}
.toggle-wrap input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.toggle-slider {
    display: block;
    width: 52px;
    height: 28px;
    background: #d1d5db;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
}
.toggle-slider::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.2);
}
.toggle-wrap input:checked + .toggle-slider {
    background: var(--amber);
}
.toggle-wrap input:checked + .toggle-slider::after {
    transform: translateX(24px);
}
.toggle-wrap input:disabled + .toggle-slider {
    background: #d1fae5;
    cursor: not-allowed;
}
.toggle-wrap input:disabled:checked + .toggle-slider {
    background: #6ee7b7;
}
.manage-section {
    background: #f8f9fa;
}
.browser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.browser-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.2s;
}
.browser-card:hover {
    box-shadow: 0 4px 20px rgb(124 58 237 / 0.14);
    transform: translateY(-2px);
}
.browser-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    color: #fff;
    flex-shrink: 0;
}
.bi-chrome {
    background: linear-gradient(135deg, #4285f4, #34a853);
}
.bi-firefox {
    background: linear-gradient(135deg, #ff6611, #ff9500);
}
.bi-safari {
    background: linear-gradient(135deg, #007aff, #5ac8fa);
}
.bi-edge {
    background: linear-gradient(135deg, #0078d4, #00b0f0);
}
.browser-info strong {
    display: block;
    font-weight: 800;
    color: var(--brown-deep);
    margin-bottom: 3px;
}
.browser-info .path {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.btn-guide {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--amber-dark);
    text-decoration: none;
    border: 1.5px solid var(--amber);
    padding: 4px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    background: none;
    font-family: "Nunito", sans-serif;
}
.btn-guide:hover {
    background: var(--amber);
    color: var(--brown-deep);
}
.consent-section {
    background: var(--bg);
}
.preview-frame {
    border: 2px dashed #e5e7eb;
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--card-bg);
}
.preview-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.mock-banner {
    background: var(--brown-deep);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 8px 32px rgb(0 0 0 / 0.3);
}
.mock-banner-text {
    color: #e5e7eb;
    font-size: 0.95rem;
    flex: 1;
}
.mock-banner-text strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}
.mock-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.mock-btn-accept {
    background: var(--amber);
    color: var(--brown-deep);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    font-family: "Nunito", sans-serif;
}
.mock-btn-manage {
    background: #fff0;
    color: #9ca3af;
    border: 1px solid rgb(255 255 255 / 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: "Nunito", sans-serif;
    transition: all 0.2s;
}
.mock-btn-manage:hover {
    color: #fff;
    border-color: rgb(255 255 255 / 0.4);
}
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-section h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--brown-deep);
    margin-bottom: 0.75rem;
}
.cta-section p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
.btn-dark {
    background: var(--brown-deep);
    color: #f5f3ff;
    padding: 0.85rem 2.2rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: "Nunito", sans-serif;
    transition: all 0.2s;
}
.btn-dark:hover {
    background: #2d1200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.25);
}
footer {
    background: var(--brown-deep);
    padding: 3rem 2rem 1.5rem;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgb(124 58 237 / 0.15);
    margin-bottom: 1.5rem;
}
.footer-brand p {
    color: rgb(255 255 255 / 0.5);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgb(255 255 255 / 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--amber);
}
.footer-bottom {
    text-align: center;
    color: rgb(255 255 255 / 0.35);
    font-size: 0.85rem;
}
.footer-bottom a {
    color: rgb(124 58 237 / 0.6);
    text-decoration: none;
}
.footer-bottom a:hover {
    color: var(--amber);
}
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--brown-deep);
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.25);
    border-left: 4px solid var(--amber);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--brown-deep);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    border-top: 1px solid rgb(124 58 237 / 0.15);
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.06);
}
.mobile-menu a:hover {
    color: var(--amber);
}
@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .what-card {
        grid-template-columns: 1fr;
    }
    .cookie-diagram {
        height: 160px;
    }
    .cookie-core {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    .browser-grid {
        grid-template-columns: 1fr;
    }
    .mock-banner {
        flex-direction: column;
    }
    .cookie-card {
        flex-direction: column;
    }
    .card-toggle-area {
        flex-direction: row;
        align-items: center;
    }
}
.form-switch .form-check-input:checked {
    background-color: var(--amber);
    border-color: var(--amber);
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
    background: #f8f9fa;
    color: #1e293b;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}
.docs-topbar,
.docs-sidenav,
.docs-mobile-toggle {
    display: none !important;
}
.docs-shell {
    display: block;
}
.docs-body {
    display: block;
}
.docs-content {
    width: 100%;
    max-width: 100%;
    background: #f8f9fa;
    overflow-y: visible;
}
.docs-content-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px 80px;
}
@media (max-width: 767px) {
    .docs-content-inner {
        padding: 0 20px 60px;
    }
}
.docs-page-header {
    width: 100%;
    background: #fff0;
    border-bottom: none;
    position: relative;
    margin-bottom: 40px;
}
.docs-page-header-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 32px 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0;
    position: relative;
    z-index: 1;
}
.docs-page-header::before {
    display: none;
}
.docs-page-header h1 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 900;
    color: #16181b;
    letter-spacing: -1.5px;
    margin: 0 0 12px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}
.docs-page-header p {
    font-size: 17px;
    color: #6c757d;
    margin: 0;
    line-height: 1.7;
    max-width: 600px;
    position: relative;
    z-index: 1;
}
.docs-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}
.docs-updated {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6c757d;
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid #e5e7eb;
}
.docs-version-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #7c3aed;
    background: rgb(124 58 237 / 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgb(124 58 237 / 0.15);
}
.docs-search-bar {
    position: relative;
    margin: 0 auto 48px;
    max-width: 640px;
}
.docs-search-bar i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a0a0;
    font-size: 18px;
    z-index: 2;
}
.docs-search-bar input {
    width: 100%;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px 24px 16px 52px;
    font-size: 16px;
    color: #16181b;
    outline: none;
    transition: all 0.25s;
    font-family: "Inter", sans-serif;
    box-shadow:
        0 4px 16px rgb(0 0 0 / 0.04),
        0 1px 3px rgb(0 0 0 / 0.02);
}
.docs-search-bar input:focus {
    border-color: #7c3aed;
    box-shadow:
        0 0 0 4px rgb(124 58 237 / 0.1),
        0 8px 24px rgb(0 0 0 / 0.06);
}
.docs-search-bar input::placeholder {
    color: #b0b0b0;
}
.docs-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-margin-top: 20px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.02);
}
.docs-section:hover {
    border-color: rgb(124 58 237 / 0.2);
    box-shadow:
        0 8px 30px rgb(124 58 237 / 0.06),
        0 2px 8px rgb(0 0 0 / 0.03);
    transform: translateY(-2px);
}
.docs-section.expanded {
    border-color: rgb(124 58 237 / 0.3);
    box-shadow:
        0 12px 40px rgb(124 58 237 / 0.1),
        0 2px 8px rgb(0 0 0 / 0.04);
    transform: translateY(-2px);
}
.docs-section-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
    border-radius: 20px;
}
.docs-section-header:hover {
    background: rgb(124 58 237 / 0.02);
}
.docs-section.expanded .docs-section-header {
    border-radius: 20px 20px 0 0;
    background: rgb(124 58 237 / 0.02);
}
.section-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(124 58 237 / 0.08) 0%, rgb(124 58 237 / 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.25s;
}
.docs-section.expanded .section-icon-wrap {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    box-shadow: 0 4px 16px rgb(124 58 237 / 0.3);
}
.docs-section.expanded .section-icon-wrap i,
.docs-section.expanded .section-icon-wrap span {
    filter: brightness(10);
}
.section-header-text {
    flex: 1;
    min-width: 0;
}
.section-header-text h2 {
    font-size: 18px;
    font-weight: 700;
    color: #16181b;
    margin: 0 0 4px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}
.section-header-text p {
    font-size: 13.5px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.section-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.section-ver-badge {
    font-size: 10px;
    font-weight: 700;
    color: #7c3aed;
    background: rgb(124 58 237 / 0.06);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgb(124 58 237 / 0.12);
    font-family: "Inter", sans-serif;
}
.section-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 14px;
    transition: all 0.25s;
    flex-shrink: 0;
}
.docs-section.expanded .section-toggle-icon {
    background: #7c3aed;
    color: #fff;
    transform: rotate(180deg);
    box-shadow: 0 2px 8px rgb(124 58 237 / 0.3);
}
.docs-section-body {
    display: none;
    padding: 0 28px 28px;
    border-top: 1px solid #f0f0f0;
}
.docs-section.expanded .docs-section-body {
    display: block;
}
.section-intro {
    font-size: 14.5px;
    color: #494b5b;
    line-height: 1.75;
    margin: 20px 0 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-radius: 14px;
    border-left: 4px solid #7c3aed;
}
.topic-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.topic-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
}
.topic-row:hover {
    background: #f5f3ff;
    border-color: rgb(124 58 237 / 0.2);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgb(124 58 237 / 0.06);
    color: inherit;
    text-decoration: none;
}
.topic-row .topic-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #7c3aed;
    flex-shrink: 0;
    background: rgb(124 58 237 / 0.08);
    border-radius: 10px;
    transition: all 0.2s;
}
.topic-row:hover .topic-icon {
    background: #7c3aed;
    color: #fff;
    box-shadow: 0 2px 8px rgb(124 58 237 / 0.3);
}
.topic-row .topic-title {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #16181b;
    transition: color 0.15s;
}
.topic-row:hover .topic-title {
    color: #7c3aed;
}
.topic-row .topic-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-new {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
}
.badge-updated {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}
.badge-popular {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}
.topic-row .topic-arrow {
    font-size: 13px;
    color: #d1d5db;
    flex-shrink: 0;
    transition: all 0.2s;
}
.topic-row:hover .topic-arrow {
    color: #7c3aed;
    transform: translateX(4px);
}
@media (max-width: 767px) {
    .docs-page-header {
        margin-bottom: 32px;
    }
    .docs-page-header-container {
        padding: 24px 20px 16px;
    }
    .docs-section-header {
        padding: 18px 20px;
        gap: 14px;
    }
    .section-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .section-header-text h2 {
        font-size: 16px;
    }
    .docs-section-body {
        padding: 0 20px 20px;
    }
    .topic-row {
        padding: 12px 14px;
        gap: 12px;
    }
    .topic-row .topic-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
.docs-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #a855f7, #c084fc);
    z-index: 9999;
    transition: width 0.1s linear;
    pointer-events: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #f8f9fa !important;
    font-family: "Inter", sans-serif;
    color: #16181b;
    overflow-x: hidden;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}
@keyframes pulse-ring {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgb(124 58 237 / 0.35);
    }
    50% {
        box-shadow: 0 0 0 8px #fff0;
    }
}
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}
@keyframes dot-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
}
@keyframes wave {
    0% {
        d: path("M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z");
    }
    50% {
        d: path("M0,60 C240,20 480,80 720,60 C960,20 1200,80 1440,60 L1440,80 L0,80 Z");
    }
    100% {
        d: path("M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z");
    }
}
.anim-fade-up {
    animation: fadeInUp 0.65s ease both;
}
.d1 {
    animation-delay: 0.05s;
}
.d2 {
    animation-delay: 0.15s;
}
.d3 {
    animation-delay: 0.25s;
}
.d4 {
    animation-delay: 0.35s;
}
.d5 {
    animation-delay: 0.45s;
}
.d6 {
    animation-delay: 0.55s;
}
.gdpr-hero {
    background: #fff0;
    padding: 40px 0 24px;
    position: relative;
    overflow: hidden;
}
.hero-dots,
.hero-wave {
    display: none !important;
}
.hero-dots span {
    position: absolute;
    border-radius: 50%;
    background: rgb(124 58 237 / 0.08);
    animation: dot-float 5s ease-in-out infinite;
}
.hero-dots span:nth-child(1) {
    width: 12px;
    height: 12px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}
.hero-dots span:nth-child(2) {
    width: 20px;
    height: 20px;
    top: 40%;
    left: 90%;
    animation-delay: 0.8s;
}
.hero-dots span:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 70%;
    left: 5%;
    animation-delay: 1.5s;
}
.hero-dots span:nth-child(4) {
    width: 16px;
    height: 16px;
    top: 20%;
    left: 80%;
    animation-delay: 2.2s;
}
.hero-dots span:nth-child(5) {
    width: 24px;
    height: 24px;
    top: 60%;
    left: 50%;
    animation-delay: 0.5s;
}
.hero-dots span:nth-child(6) {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 75%;
    animation-delay: 3s;
}
.eu-stars {
    font-size: 24px;
    color: #7c3aed;
    letter-spacing: 12px;
    display: block;
    text-align: left;
    margin-bottom: 12px;
    animation: float 4s ease-in-out infinite;
}
.gdpr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f3ff;
    border: 1px solid #ede9fe;
    color: #7c3aed;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    margin-bottom: 16px;
}
.hero-title-gdpr {
    color: #16181b !important;
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 12px;
}
.hero-subtitle-gdpr {
    color: #494b5b !important;
    font-size: 18px;
    color: rgb(255 255 255 / 0.85);
    max-width: 580px;
    margin: 0 0 20px;
    line-height: 1.7;
}
.updated-pill {
    display: inline-block;
    background: #f5f3ff;
    color: #7c3aed;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgb(109 40 217 / 0.2);
}
.hero-wave {
    display: block;
    width: 100%;
    height: 40px;
    margin-top: 15px;
}
.compliance-section {
    background: #f8f9fa;
    padding: 20px 0 60px;
}
.badge-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgb(109 40 217 / 0.08);
    border: 1px solid rgb(124 58 237 / 0.12);
    height: 100%;
    transition: all 0.3s ease;
}
.badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgb(109 40 217 / 0.14);
    border-color: #7c3aed;
}
.badge-check {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin: 0 auto 16px;
    animation: pulse-ring 2.5s ease-in-out infinite;
}
.badge-title {
    font-size: 17px;
    font-weight: 800;
    color: #16181b;
    margin-bottom: 6px;
}
.badge-sub {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}
.light-section {
    background: #f8f9fa;
    padding: 70px 0;
}
.gdpr-heading {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: #16181b;
    letter-spacing: -0.8px;
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}
.gdpr-heading::after {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #9333ea);
    border-radius: 2px;
    margin: 12px auto 0;
}
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: 0 4px 28px rgb(109 40 217 / 0.07);
    border: 1px solid rgb(124 58 237 / 0.1);
}
.blue-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blue-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: #374151;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.6;
}
.blue-list li:last-child {
    border-bottom: none;
}
.blue-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #7c3aed;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}
.legal-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    box-shadow: 0 4px 20px rgb(109 40 217 / 0.07);
    border: 1px solid rgb(124 58 237 / 0.1);
    transition: all 0.3s ease;
}
.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgb(109 40 217 / 0.12);
    border-color: #7c3aed;
}
.legal-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f8f9fa, #f5f3ff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 24px;
    margin-bottom: 20px;
}
.legal-title {
    font-size: 17px;
    font-weight: 800;
    color: #16181b;
    margin-bottom: 10px;
}
.legal-body {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
}
.rights-section {
    background: #fff;
    padding: 90px 0;
}
.rights-heading {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    color: #16181b;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.rights-sub {
    font-size: 17px;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto 60px;
    line-height: 1.7;
}
.right-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    border-top: 5px solid #fff0;
    box-shadow: 0 4px 24px rgb(0 0 0 / 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.right-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.12);
}
.right-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
    animation: pulse-ring 3s ease-in-out infinite;
}
.right-name {
    font-size: 18px;
    font-weight: 800;
    color: #16181b;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.right-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 24px;
}
.right-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid;
    background: #fff0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
    margin-top: auto;
}
.right-btn:hover {
    color: #fff !important;
}
.rc-blue {
    border-top-color: #3b82f6;
}
.rc-blue .right-icon-wrap {
    background: #3b82f6;
}
.rc-blue .right-btn {
    color: #3b82f6;
    border-color: #3b82f6;
}
.rc-blue .right-btn:hover {
    background: #3b82f6;
}
.rc-green {
    border-top-color: #10b981;
}
.rc-green .right-icon-wrap {
    background: #10b981;
}
.rc-green .right-btn {
    color: #10b981;
    border-color: #10b981;
}
.rc-green .right-btn:hover {
    background: #10b981;
}
.rc-red {
    border-top-color: #ef4444;
}
.rc-red .right-icon-wrap {
    background: #ef4444;
}
.rc-red .right-btn {
    color: #ef4444;
    border-color: #ef4444;
}
.rc-red .right-btn:hover {
    background: #ef4444;
}
.rc-amber {
    border-top-color: #f59e0b;
}
.rc-amber .right-icon-wrap {
    background: #f59e0b;
}
.rc-amber .right-btn {
    color: #f59e0b;
    border-color: #f59e0b;
}
.rc-amber .right-btn:hover {
    background: #f59e0b;
}
.rc-purple {
    border-top-color: #8b5cf6;
}
.rc-purple .right-icon-wrap {
    background: #8b5cf6;
}
.rc-purple .right-btn {
    color: #8b5cf6;
    border-color: #8b5cf6;
}
.rc-purple .right-btn:hover {
    background: #8b5cf6;
}
.rc-teal {
    border-top-color: #14b8a6;
}
.rc-teal .right-icon-wrap {
    background: #14b8a6;
}
.rc-teal .right-btn {
    color: #14b8a6;
    border-color: #14b8a6;
}
.rc-teal .right-btn:hover {
    background: #14b8a6;
}
.retention-section {
    background: #f8f9fa;
    padding: 70px 0;
}
.timeline-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}
.timeline-item {
    display: flex;
    gap: 20px;
    padding-bottom: 40px;
    position: relative;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-line {
    position: absolute;
    left: 19px;
    top: 48px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, #7c3aed, transparent);
}
.timeline-item:last-child .timeline-line {
    display: none;
}
.tl-dot {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgb(124 58 237 / 0.12);
}
.tl-content {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    flex: 1;
    border: 1px solid rgb(124 58 237 / 0.12);
    box-shadow: 0 2px 12px rgb(109 40 217 / 0.05);
}
.tl-title {
    font-size: 16px;
    font-weight: 800;
    color: #16181b;
    margin-bottom: 6px;
}
.tl-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}
.transfers-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 20px rgb(109 40 217 / 0.07);
    border: 1px solid rgb(124 58 237 / 0.1);
    transition: all 0.3s ease;
}
.transfers-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgb(109 40 217 / 0.12);
    border-color: #7c3aed;
}
.tr-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f8f9fa, #f5f3ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 26px;
    margin-bottom: 20px;
}
.tr-title {
    font-size: 18px;
    font-weight: 800;
    color: #16181b;
    margin-bottom: 12px;
}
.tr-body {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}
.gdpr-cta {
    background: #f8f9fa;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gdpr-cta::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(124 58 237 / 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-icon {
    width: 72px;
    height: 72px;
    background: #f5f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #7c3aed;
    margin: 0 auto 28px;
    backdrop-filter: blur(8px);
    border: 1px solid rgb(124 58 237 / 0.2);
}
.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #16181b;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.cta-sub {
    font-size: 17px;
    color: #494b5b;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.btn-white-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7c3aed;
    color: #fff;
    padding: 14px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgb(124 58 237 / 0.25);
}
.btn-white-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgb(124 58 237 / 0.35);
    color: #fff;
    background: #6d28d9;
}
.cta-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .timeline-wrap {
        padding: 0 8px;
    }
    .info-card {
        padding: 28px 20px;
    }
}
.badge-card,
.info-card,
.legal-card,
.right-card,
.transfers-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.badge-card:hover,
.info-card:hover,
.legal-card:hover,
.right-card:hover,
.transfers-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.1);
    border-color: #7c3aed;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
    background: #f5f3ff;
    color: #1e1040;
}
.guides-hero {
    background: #fff0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0 24px;
    position: relative;
    overflow: hidden;
}
.guides-hero::before {
    display: none;
}
.guides-hero::after {
    display: none;
}
.guides-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7c3aed;
    background: rgb(124 58 237 / 0.1);
    border: 1px solid rgb(124 58 237 / 0.2);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 22px;
}
.guides-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 18px;
}
.guides-hero h1 span {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.guides-hero .subtitle {
    font-size: 17px;
    color: #475569;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 36px;
}
.guides-search-wrap {
    position: relative;
    max-width: 540px;
    margin-bottom: 42px;
}
.guides-search-wrap .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 17px;
    pointer-events: none;
}
.guides-search-wrap input {
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px 16px 50px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    font-family: "Inter", sans-serif;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}
.guides-search-wrap input::placeholder {
    color: #94a3b8;
}
.guides-search-wrap input:focus {
    background: #fff;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgb(124 58 237 / 0.1);
}
.guides-search-wrap .search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #8b5cf6;
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: "Inter", sans-serif;
}
.guides-search-wrap .search-btn:hover {
    background: #7c3aed;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    transition: all 0.2s;
    user-select: none;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.02);
}
.hero-pill:hover {
    background: #f5f3ff;
    border-color: #c4b5fd;
    color: #7c3aed;
}
.hero-pill.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
    box-shadow: 0 4px 14px rgb(124 58 237 / 0.25);
}
.featured-card {
    background: linear-gradient(135deg, #3730a3 0%, #5b21b6 50%, #7c3aed 100%);
    border-radius: 20px;
    padding: 48px 52px;
    position: relative;
    overflow: hidden;
    margin-bottom: 56px;
    box-shadow: 0 24px 48px -12px rgb(91 33 182 / 0.35);
    transition: transform 0.3s ease;
}
.featured-card:hover {
    transform: translateY(-4px);
}
.featured-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.05);
    pointer-events: none;
}
.featured-card::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: 100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.04);
    pointer-events: none;
}
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgb(255 255 255 / 0.15);
    border: 1px solid rgb(255 255 255 / 0.2);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.featured-card h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.featured-card p {
    font-size: 15px;
    color: rgb(255 255 255 / 0.78);
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 28px;
}
.featured-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}
.featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgb(255 255 255 / 0.7);
    font-weight: 500;
}
.featured-card .btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #5b21b6;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.12);
}
.featured-card .btn-featured:hover {
    background: #f5f3ff;
    transform: translateX(3px);
}
.featured-icon-bg {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 110px;
    opacity: 0.08;
    color: #fff;
    pointer-events: none;
    line-height: 1;
}
.section-header {
    margin-bottom: 36px;
}
.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e1040;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}
.section-header p {
    color: #6b7280;
    font-size: 15px;
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
@media (max-width: 991px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}
.guide-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 26px 24px;
    border: 1px solid #ede9fe;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.28s;
    cursor: pointer;
}
.guide-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, #8b5cf6);
    opacity: 0;
    transition: opacity 0.28s;
    border-radius: 16px 16px 0 0;
}
.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgb(139 92 246 / 0.18);
    border-color: #c4b5fd;
}
.guide-card:hover::before {
    opacity: 1;
}
.guide-card-icon {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 20px;
    opacity: 0.15;
    color: var(--card-accent, #8b5cf6);
    transition: opacity 0.28s;
}
.guide-card:hover .guide-card-icon {
    opacity: 0.35;
}
.cat-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.cat-start {
    background: #ede9fe;
    color: #6d28d9;
    --card-accent: #7c3aed;
}
.cat-monitor {
    background: #e0f2fe;
    color: #0369a1;
    --card-accent: #0ea5e9;
}
.cat-perf {
    background: #fef3c7;
    color: #92400e;
    --card-accent: #f59e0b;
}
.cat-seo {
    background: #dcfce7;
    color: #166534;
    --card-accent: #16a34a;
}
.cat-alerts {
    background: #ffe4e6;
    color: #9f1239;
    --card-accent: #f43f5e;
}
.cat-api {
    background: #f0fdf4;
    color: #065f46;
    --card-accent: #10b981;
}
.cat-trouble {
    background: #fff7ed;
    color: #9a3412;
    --card-accent: #ea580c;
}
.guide-card h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: #1e1040;
    margin-bottom: 8px;
    line-height: 1.4;
    padding-right: 30px;
}
.guide-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 18px;
}
.guide-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.diff-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}
.diff-beginner {
    background: #d1fae5 !important;
    color: #065f46 !important;
}
.diff-intermediate {
    background: #fef3c7 !important;
    color: #92400e !important;
}
.diff-advanced {
    background: #ffe4e6 !important;
    color: #9f1239 !important;
}
.read-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    margin-left: auto;
}
.guide-card.hidden-card {
    display: none;
}
.guide-card.visible-card {
    display: block;
}
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #8b5cf6;
    border: 2px solid #c4b5fd;
    border-radius: 12px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Inter", sans-serif;
    margin-top: 40px;
}
.load-more-btn:hover {
    background: #8b5cf6;
    color: #fff;
    border-color: #8b5cf6;
    box-shadow: 0 8px 20px rgb(139 92 246 / 0.3);
    transform: translateY(-2px);
}
.guides-cta {
    background: linear-gradient(135deg, #2d1b69 0%, #1e0a4a 100%);
    border-radius: 24px;
    padding: 60px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 70px 0 0;
}
.guides-cta::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgb(139 92 246 / 0.15);
    pointer-events: none;
}
.guides-cta::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgb(192 132 252 / 0.1);
    pointer-events: none;
}
.guides-cta h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.guides-cta p {
    font-size: 16px;
    color: rgb(255 255 255 / 0.7);
    max-width: 440px;
    margin: 0 auto 32px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}
.guides-cta .cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.btn-cta-primary {
    background: #8b5cf6;
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: "Inter", sans-serif;
}
.btn-cta-primary:hover {
    background: #7c3aed;
    color: #fff;
    box-shadow: 0 8px 24px rgb(139 92 246 / 0.4);
    transform: translateY(-2px);
}
.btn-cta-outline {
    background: #fff0;
    color: rgb(255 255 255 / 0.85);
    border: 1.5px solid rgb(255 255 255 / 0.25);
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: "Inter", sans-serif;
}
.btn-cta-outline:hover {
    border-color: rgb(255 255 255 / 0.55);
    color: #fff;
    background: rgb(255 255 255 / 0.06);
}
.no-results-msg {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
    font-size: 16px;
    grid-column: 1 / -1;
}
.no-results-msg i {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.4;
}
.count-badge {
    display: inline-block;
    background: #ede9fe;
    color: #6d28d9;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}
.pricing-card-custom {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.02),
        0 2px 4px -1px rgb(0 0 0 / 0.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}
.pricing-card-custom:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 25px 40px -10px rgb(124 58 237 / 0.16) !important;
    border-color: rgb(124 58 237 / 0.3) !important;
    z-index: 5 !important;
}
.pricing-card-custom.active-card {
    background: #0b0f19 !important;
    border-color: transparent !important;
    box-shadow: 0 25px 50px -12px rgb(11 15 25 / 0.25) !important;
}
.pricing-card-custom.active-card h3,
.pricing-card-custom.active-card .price-number,
.pricing-card-custom.active-card .price-period,
.pricing-card-custom.active-card .pricing-subtitle,
.pricing-card-custom.active-card .feature-item {
    color: #ffffff !important;
}
.pricing-card-custom.active-card .pricing-subtitle {
    opacity: 0.75;
}
.btn-pricing-cta {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    border: 1px solid #fff0;
    transition: all 0.2s ease;
    display: block;
    text-decoration: none !important;
}
.pricing-card-custom .btn-pricing-cta {
    background: #0f172a;
    color: #fff;
}
.pricing-card-custom .btn-pricing-cta:hover {
    background: #1e293b;
    color: #fff;
}
.pricing-card-custom.active-card .btn-pricing-cta {
    background: #7c3aed !important;
    color: #ffffff !important;
}
.pricing-card-custom.active-card .btn-pricing-cta:hover {
    background: #6d28d9 !important;
}
.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #7c3aed;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgb(124 58 237 / 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.pricing-card-custom .feature-checkmark {
    stroke: #10b981;
}
#footer-cta-section {
    display: block !important;
}
.card-feature-hover {
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.05),
        0 2px 4px -1px rgb(0 0 0 / 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-feature-hover:hover {
    transform: translateY(-6px) !important;
    box-shadow:
        0 20px 25px -5px rgb(124 58 237 / 0.15),
        0 8px 10px -6px rgb(124 58 237 / 0.1) !important;
    border-color: rgb(124 58 237 / 0.5) !important;
}
.custom-accordion {
    background: transparent !important;
    border: none !important;
}
.custom-accordion .accordion-item {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    margin-bottom: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.05) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.custom-accordion .accordion-item:hover {
    border-color: #cbd5e1 !important;
    transform: translateY(-1px);
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.05),
        0 2px 4px -1px rgb(0 0 0 / 0.03) !important;
}
.custom-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: #ddd6fe !important;
    background-color: #faf5ff !important;
    box-shadow:
        0 10px 15px -3px rgb(124 58 237 / 0.04),
        0 4px 6px -2px rgb(124 58 237 / 0.02) !important;
}
.custom-accordion .accordion-item.faq-active {
    border-color: #ddd6fe !important;
    background-color: #faf5ff !important;
}
.custom-accordion .accordion-button {
    padding: 24px 28px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-align: left !important;
    transition: all 0.25s ease !important;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: #7c3aed !important;
}
.custom-accordion .accordion-button::after {
    content: "" !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-size: 1.25rem !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    right: 24px !important;
    top: 50% !important;
    margin-top: -10px !important;
    position: absolute !important;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "" !important;
    transform: rotate(-180deg) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
}
.custom-accordion .accordion-body {
    padding: 0 28px 24px 28px !important;
    font-size: 15px !important;
    color: #475569 !important;
    line-height: 1.625 !important;
    font-weight: 400 !important;
    border-top: none !important;
    background-color: transparent !important;
}
.contact-card-wrapper {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 24px rgb(0 0 0 / 0.02) !important;
    overflow: hidden !important;
}
.contact-left-tint {
    background-color: #faf5ff !important;
    border-right: 1px solid #e2e8f0 !important;
}
.contact-left-tint .badge-talk {
    color: #7c3aed !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}
.contact-left-tint .contact-heading {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    font-family: "Inter", sans-serif !important;
}
.contact-left-tint .contact-desc {
    color: #475569 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}
.contact-form-label {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #0f172a !important;
    margin-bottom: 8px !important;
}
.contact-input-custom {
    padding-left: 48px !important;
    height: 52px !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease !important;
}
.contact-input-custom:focus {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 3px rgb(124 58 237 / 0.1) !important;
    outline: none !important;
}
.contact-input-icon {
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.contact-submit-btn {
    background: #7c3aed !important;
    border: none !important;
    height: 52px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #ffffff !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 12px rgb(124 58 237 / 0.15) !important;
}
.contact-submit-btn:hover {
    background: #6d28d9 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgb(124 58 237 / 0.25) !important;
}
.contact-submit-btn:active {
    transform: translateY(0) !important;
}
:root {
    --pk-primary: #7c3aed;
    --pk-primary-hover: #6d28d9;
    --pk-primary-light: #f5f3ff;
    --pk-primary-lighter: #ede9fe;
    --pk-dark: #0f172a;
    --pk-dark-card: #1e293b;
    --pk-body-bg: #f8fafc;
    --pk-surface: #ffffff;
    --pk-border: #e2e8f0;
    --pk-border-glow: rgba(124, 58, 237, 0.15);
    --pk-text-dark: #0f172a;
    --pk-text-mid: #475569;
    --pk-text-light: #94a3b8;
    --pk-font-sans: "Inter", sans-serif;
    --pk-font-display: "Poppins", sans-serif;
    --pk-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --pk-radius-sm: 12px;
    --pk-radius-md: 16px;
    --pk-radius-lg: 24px;
    --pk-radius-xl: 32px;
    --pk-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --pk-shadow-md: 0 10px 30px rgba(124, 58, 237, 0.05);
    --pk-shadow-lg: 0 20px 40px rgba(124, 58, 237, 0.08);
}
body {
    font-family: var(--pk-font-sans);
    background-color: var(--pk-body-bg);
    color: var(--pk-text-mid);
    overflow-x: hidden;
}
.pk-section {
    padding: 100px 0;
    position: relative;
}
.pk-section--alt {
    background-color: var(--pk-surface);
}
.pk-section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--pk-primary-light);
    color: var(--pk-primary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.pk-section-title {
    font-family: var(--pk-font-display);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--pk-text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.pk-section-subtitle {
    font-size: 1.15rem;
    color: var(--pk-text-mid);
    max-width: 620px;
    margin: 0 auto 60px;
    line-height: 1.7;
}
.pk-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--pk-primary), #9333ea);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--pk-ease);
    box-shadow: 0 4px 18px rgb(124 58 237 / 0.25);
    cursor: pointer;
}
.pk-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(124 58 237 / 0.4);
    color: #fff;
}
.pk-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--pk-surface);
    color: var(--pk-primary);
    border: 2px solid var(--pk-primary-lighter);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--pk-ease);
    cursor: pointer;
}
.pk-btn-outline:hover {
    border-color: var(--pk-primary);
    background: var(--pk-primary-light);
    transform: translateY(-2px);
    color: var(--pk-primary);
}
.pk-hero {
    position: relative;
    padding: 40px 0 24px;
    background: #fff0;
    overflow: hidden;
    border-bottom: 1px solid var(--pk-border);
}
.pk-hero::before {
    display: none;
}
.pk-hero__glow {
    display: none;
}
.pk-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.pk-hero__heading {
    font-family: var(--pk-font-display);
    font-size: 4.25rem;
    font-weight: 900;
    color: var(--pk-text-dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.pk-hero__heading span {
    background: linear-gradient(135deg, var(--pk-primary), #9333ea 60%, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.pk-hero__desc {
    font-size: 1.25rem;
    color: var(--pk-text-mid);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.pk-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.pk-hero__visuals {
    position: relative;
    height: 180px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pk-hero-floating-card {
    position: absolute;
    background: rgb(255 255 255 / 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgb(255 255 255 / 0.6);
    border-radius: var(--pk-radius-md);
    padding: 16px 24px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.05);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: pkFloat 5s ease-in-out infinite;
}
.pk-hero-floating-card--1 {
    left: 5%;
    bottom: 40px;
    animation-delay: 0s;
}
.pk-hero-floating-card--2 {
    right: 5%;
    bottom: 20px;
    animation-delay: -1.5s;
    animation-duration: 6s;
}
.pk-hero-floating-card--3 {
    bottom: 90px;
    left: 38%;
    animation-delay: -3s;
    animation-duration: 5.5s;
}
.pk-hero-floating-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--pk-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--pk-primary);
}
.pk-hero-floating-card__details {
    text-align: left;
}
.pk-hero-floating-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pk-text-dark);
    margin-bottom: 2px;
}
.pk-hero-floating-card__meta {
    font-size: 0.75rem;
    color: var(--pk-text-light);
    font-weight: 500;
}
.pk-download-btn {
    transition: all 0.3s var(--pk-ease) !important;
    position: relative;
    overflow: hidden;
}
.pk-download-btn:active {
    transform: scale(0.96) !important;
}
@keyframes pkGlowPulse {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
@keyframes pkFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}
@keyframes pkPulseDot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.4;
    }
}
.pk-about__grid {
    align-items: center;
}
.pk-about__content {
    padding-right: 40px;
}
.pk-about__p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--pk-text-mid);
    margin-bottom: 24px;
}
.pk-about__visual {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pk-dashboard-mockup {
    width: 100%;
    max-width: 480px;
    background: var(--pk-dark);
    border-radius: var(--pk-radius-lg);
    box-shadow: var(--pk-shadow-lg);
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s var(--pk-ease);
}
.pk-dashboard-mockup:hover {
    transform: scale(1.02);
}
.pk-dashboard-mockup__header {
    height: 38px;
    background: #1e293b;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 6px;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
}
.pk-dashboard-mockup__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.pk-dashboard-mockup__body {
    padding: 24px;
}
.pk-mock-graph {
    width: 100%;
    height: 160px;
    margin: 20px 0;
}
.pk-floating-panel {
    position: absolute;
    background: rgb(255 255 255 / 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgb(255 255 255 / 0.5);
    border-radius: var(--pk-radius-md);
    padding: 16px 20px;
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.1);
    z-index: 3;
    transition: all 0.3s var(--pk-ease);
}
.pk-floating-panel:hover {
    transform: translateY(-4px);
}
.pk-floating-panel--uptime {
    top: 20px;
    right: 0;
    width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pk-floating-panel--alerts {
    bottom: 20px;
    left: -20px;
    width: 220px;
}
.pk-pulse-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}
.pk-pulse-indicator::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: pkPulseDot 2s infinite;
}
.pk-mission {
    text-align: center;
    background: linear-gradient(135deg, var(--pk-primary-light) 0%, rgb(255 255 255) 100%);
    border-top: 1px solid var(--pk-border);
    border-bottom: 1px solid var(--pk-border);
}
.pk-mission__card {
    max-width: 800px;
    margin: 0 auto;
    background: rgb(255 255 255 / 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgb(255 255 255 / 0.6);
    border-radius: var(--pk-radius-lg);
    padding: 60px 40px;
    box-shadow: var(--pk-shadow-md);
}
.pk-mission__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pk-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 28px;
    box-shadow: 0 8px 20px rgb(124 58 237 / 0.2);
}
.pk-mission__text {
    font-family: var(--pk-font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--pk-text-dark);
    line-height: 1.6;
    margin: 0;
}
.pk-assets__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pk-asset-card {
    background: var(--pk-surface);
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.35s var(--pk-ease);
    position: relative;
    overflow: hidden;
}
.pk-asset-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #fff0;
    border-radius: var(--pk-radius-lg);
    transition: border-color 0.35s var(--pk-ease);
    pointer-events: none;
}
.pk-asset-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pk-shadow-lg);
}
.pk-asset-card:hover::after {
    border-color: var(--pk-border-glow);
}
.pk-asset-card__icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--pk-primary-light);
    color: var(--pk-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
    transition: all 0.3s var(--pk-ease);
}
.pk-asset-card:hover .pk-asset-card__icon-wrap {
    background: var(--pk-primary);
    color: #fff;
    transform: scale(1.05);
}
.pk-asset-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pk-text-dark);
    margin-bottom: 8px;
}
.pk-asset-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--pk-body-bg);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--pk-text-mid);
    margin-bottom: 24px;
}
.pk-asset-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pk-primary);
    border: 2px solid var(--pk-primary-lighter);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s var(--pk-ease);
    width: 100%;
    justify-content: center;
}
.pk-asset-card__btn:hover {
    background: var(--pk-primary);
    border-color: var(--pk-primary);
    color: #fff;
}
.pk-guide-card {
    background: var(--pk-surface);
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-lg);
    padding: 44px;
    box-shadow: var(--pk-shadow-sm);
    height: 100%;
}
.pk-colors {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}
.pk-color-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: var(--pk-body-bg);
    border-radius: var(--pk-radius-sm);
    border: 1px solid var(--pk-border);
    transition: transform 0.2s var(--pk-ease);
}
.pk-color-item:hover {
    transform: scale(1.01);
}
.pk-color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgb(0 0 0 / 0.05);
    flex-shrink: 0;
}
.pk-color-swatch--primary {
    background-color: #7c3aed;
}
.pk-color-swatch--dark {
    background-color: #0f172a;
}
.pk-color-swatch--light {
    background-color: #f8fafc;
}
.pk-color-info {
    flex: 1;
}
.pk-color-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pk-text-dark);
    margin-bottom: 2px;
}
.pk-color-hex {
    font-size: 0.8rem;
    color: var(--pk-text-light);
    font-family: monospace;
}
.pk-copy-btn {
    background: #fff0;
    border: none;
    color: var(--pk-text-light);
    font-size: 1rem;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s var(--pk-ease);
}
.pk-copy-btn:hover {
    color: var(--pk-primary);
    background: rgb(124 58 237 / 0.08);
}
.pk-usage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.pk-usage-box {
    background: var(--pk-body-bg);
    border-radius: var(--pk-radius-md);
    padding: 24px;
    text-align: center;
    border: 1px dashed var(--pk-border);
    position: relative;
}
.pk-usage-box--do {
    border-color: rgb(16 185 129 / 0.3);
}
.pk-usage-box--dont {
    border-color: rgb(239 68 68 / 0.3);
}
.pk-usage-logo {
    height: 32px;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.pk-usage-logo--stretched {
    transform: scaleX(1.6) scaleY(0.7);
}
.pk-usage-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}
.pk-usage-badge--do {
    background: rgb(16 185 129 / 0.12);
    color: #10b981;
}
.pk-usage-badge--dont {
    background: rgb(239 68 68 / 0.12);
    color: #ef4444;
}
.pk-usage-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pk-text-mid);
    margin: 0;
}
.pk-typography-demo {
    margin-top: 28px;
    padding: 20px;
    background: var(--pk-body-bg);
    border-radius: var(--pk-radius-md);
    border: 1px solid var(--pk-border);
}
.pk-typography-demo .pk-typo-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}
.pk-typography-demo .pk-typo-row:not(:last-child) {
    border-bottom: 1px solid var(--pk-border);
}
.pk-typo-label {
    width: 80px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pk-text-light);
    text-transform: uppercase;
}
.pk-typo-preview {
    flex: 1;
    color: var(--pk-text-dark);
}
.pk-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pk-feature-card {
    background: var(--pk-surface);
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-lg);
    padding: 40px 32px;
    transition: all 0.35s var(--pk-ease);
    position: relative;
    z-index: 2;
}
.pk-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pk-shadow-lg);
}
.pk-feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pk-primary-light), var(--pk-primary-lighter));
    color: var(--pk-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.3s var(--pk-ease);
}
.pk-feature-card:hover .pk-feature-card__icon {
    background: var(--pk-primary);
    color: #fff;
}
.pk-feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pk-text-dark);
    margin-bottom: 12px;
}
.pk-feature-card__desc {
    font-size: 0.95rem;
    color: var(--pk-text-mid);
    line-height: 1.7;
    margin: 0;
}
.pk-screenshots__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pk-screenshot-card {
    background: var(--pk-surface);
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-lg);
    overflow: hidden;
    box-shadow: var(--pk-shadow-sm);
    transition: all 0.35s var(--pk-ease);
}
.pk-screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pk-shadow-lg);
}
.pk-screenshot-mini {
    height: 200px;
    background: var(--pk-dark);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--pk-border);
}
.pk-screenshot-mini__ui {
    position: absolute;
    inset: 12px;
    background: #111827;
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 0.05);
    padding: 12px;
    overflow: hidden;
}
.pk-mini-header {
    height: 10px;
    background: #1e293b;
    border-radius: 3px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    gap: 3px;
}
.pk-mini-indicator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ef4444;
}
.pk-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}
.pk-mini-tile {
    background: #1e293b;
    height: 32px;
    border-radius: 4px;
    padding: 4px;
}
.pk-mini-bar {
    height: 4px;
    background: rgb(255 255 255 / 0.05);
    border-radius: 2px;
    margin-bottom: 3px;
}
.pk-mini-chart-box {
    background: #1e293b;
    height: 80px;
    border-radius: 6px;
    position: relative;
    padding: 8px;
}
.pk-mini-svg-line {
    width: 100%;
    height: 100%;
}
.pk-screenshot-card__body {
    padding: 24px;
}
.pk-screenshot-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pk-text-dark);
    margin-bottom: 6px;
}
.pk-screenshot-card__desc {
    font-size: 0.88rem;
    color: var(--pk-text-mid);
    margin: 0;
}
.pk-facts {
    background-color: var(--pk-dark);
    color: #fff;
    overflow: hidden;
}
.pk-facts__glow {
    position: absolute;
    bottom: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(124 58 237 / 0.15) 0%, #fff0 70%);
    pointer-events: none;
}
.pk-facts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pk-fact-card {
    background: rgb(255 255 255 / 0.03);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: var(--pk-radius-lg);
    padding: 44px 36px;
    text-align: center;
    transition: all 0.35s var(--pk-ease);
    backdrop-filter: blur(12px);
}
.pk-fact-card:hover {
    transform: translateY(-6px);
    background: rgb(255 255 255 / 0.06);
    border-color: rgb(124 58 237 / 0.35);
    box-shadow: 0 15px 35px rgb(124 58 237 / 0.15);
}
.pk-fact-card__num {
    font-family: var(--pk-font-display);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1.1;
}
.pk-fact-card__label {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgb(255 255 255 / 0.85);
    margin-bottom: 6px;
}
.pk-fact-card__desc {
    font-size: 0.88rem;
    color: rgb(255 255 255 / 0.5);
    margin: 0;
}
.pk-media__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pk-media-card {
    background: var(--pk-surface);
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-lg);
    padding: 40px 32px;
    transition: all 0.35s var(--pk-ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.pk-media-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pk-shadow-lg);
}
.pk-media-card__logo {
    height: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--pk-text-dark);
    letter-spacing: -0.5px;
}
.pk-media-card__logo i {
    color: var(--pk-primary);
    margin-right: 8px;
    font-size: 1.4rem;
}
.pk-media-card__quote {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--pk-text-mid);
    margin-bottom: 28px;
    position: relative;
}
.pk-media-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pk-primary);
    text-decoration: none;
    transition: gap 0.2s var(--pk-ease);
}
.pk-media-card__btn:hover {
    gap: 10px;
    color: var(--pk-primary-hover);
}
.pk-leadership__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.pk-leader-card {
    background: var(--pk-surface);
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-lg);
    padding: 40px 36px;
    text-align: center;
    transition: all 0.35s var(--pk-ease);
}
.pk-leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pk-shadow-lg);
}
.pk-leader-card__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--pk-primary), #9333ea);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgb(124 58 237 / 0.15);
}
.pk-leader-card__avatar--secondary {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.pk-leader-card__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pk-text-dark);
    margin-bottom: 4px;
}
.pk-leader-card__role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pk-primary);
    margin-bottom: 16px;
}
.pk-leader-card__bio {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--pk-text-mid);
    margin-bottom: 24px;
}
.pk-leader-card__socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.pk-leader-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--pk-body-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pk-text-mid);
    text-decoration: none;
    transition: all 0.2s var(--pk-ease);
}
.pk-leader-social-btn:hover {
    background: var(--pk-primary);
    color: #fff;
}
.pk-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.pk-contact-card {
    background: var(--pk-surface);
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-lg);
    padding: 40px;
    text-align: center;
    transition: all 0.35s var(--pk-ease);
}
.pk-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pk-shadow-lg);
    border-color: rgb(124 58 237 / 0.2);
}
.pk-contact-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--pk-primary-light);
    color: var(--pk-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}
.pk-contact-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pk-text-dark);
    margin-bottom: 8px;
}
.pk-contact-card__val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pk-text-dark);
    margin-bottom: 24px;
    display: block;
    text-decoration: none;
}
.pk-contact-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pk-primary);
    background: var(--pk-primary-light);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s var(--pk-ease);
}
.pk-contact-card__btn:hover {
    background: var(--pk-primary);
    color: #fff;
}
.pk-faq__wrap {
    max-width: 800px;
    margin: 0 auto;
}
.pk-faq-item {
    background: var(--pk-surface);
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s var(--pk-ease);
}
.pk-faq-item:hover {
    border-color: rgb(124 58 237 / 0.25);
    box-shadow: var(--pk-shadow-sm);
}
.pk-faq-btn {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--pk-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pk-text-dark);
    cursor: pointer;
    transition: color 0.3s var(--pk-ease);
}
.pk-faq-btn:focus {
    outline: none;
}
.pk-faq-btn i {
    font-size: 1.25rem;
    color: var(--pk-text-light);
    transition:
        transform 0.3s var(--pk-ease),
        color 0.3s var(--pk-ease);
}
.pk-faq-item--active .pk-faq-btn {
    color: var(--pk-primary);
}
.pk-faq-item--active .pk-faq-btn i {
    transform: rotate(180deg);
    color: var(--pk-primary);
}
.pk-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--pk-ease);
}
.pk-faq-content__inner {
    padding: 0 28px 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pk-text-mid);
}
.pk-cta {
    padding: 100px 0 120px;
    background-color: var(--pk-surface);
}
.pk-cta__inner {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #ec4899 100%);
    border-radius: var(--pk-radius-xl);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgb(124 58 237 / 0.25);
}
.pk-cta__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    pointer-events: none;
}
.pk-cta__heading {
    font-family: var(--pk-font-display);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.pk-cta__desc {
    font-size: 1.25rem;
    color: rgb(255 255 255 / 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.pk-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.pk-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: var(--pk-primary);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--pk-ease);
    cursor: pointer;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.08);
}
.pk-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
    color: var(--pk-primary-hover);
}
.pk-btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff0;
    color: #fff;
    border: 2px solid rgb(255 255 255 / 0.4);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--pk-ease);
    cursor: pointer;
}
.pk-btn-white-outline:hover {
    background: rgb(255 255 255 / 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .pk-hero__heading {
        font-size: 3.25rem;
    }
    .pk-section-title {
        font-size: 2.25rem;
    }
    .pk-assets__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pk-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pk-screenshots__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pk-facts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pk-media__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pk-about__content {
        padding-right: 0;
        margin-bottom: 50px;
    }
}
@media (max-width: 768px) {
    .pk-hero__heading {
        font-size: 2.5rem;
    }
    .pk-hero__desc {
        font-size: 1.1rem;
    }
    .pk-section-title {
        font-size: 1.85rem;
    }
    .pk-section {
        padding: 70px 0;
    }
    .pk-assets__grid {
        grid-template-columns: 1fr;
    }
    .pk-features__grid {
        grid-template-columns: 1fr;
    }
    .pk-screenshots__grid {
        grid-template-columns: 1fr;
    }
    .pk-facts__grid {
        grid-template-columns: 1fr;
    }
    .pk-media__grid {
        grid-template-columns: 1fr;
    }
    .pk-leadership__grid {
        grid-template-columns: 1fr;
    }
    .pk-contact__grid {
        grid-template-columns: 1fr;
    }
    .pk-usage-grid {
        grid-template-columns: 1fr;
    }
    .pk-hero-floating-card {
        display: none;
    }
}
.pricing-card-custom {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.02),
        0 2px 4px -1px rgb(0 0 0 / 0.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}
.pricing-card-custom:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 25px 40px -10px rgb(124 58 237 / 0.16) !important;
    border-color: rgb(124 58 237 / 0.3) !important;
    z-index: 5 !important;
}
.pricing-card-custom.active-card {
    background: #0b0f19 !important;
    border-color: transparent !important;
    box-shadow: 0 25px 50px -12px rgb(11 15 25 / 0.25) !important;
}
.pricing-card-custom.active-card h3,
.pricing-card-custom.active-card .price-number,
.pricing-card-custom.active-card .price-period,
.pricing-card-custom.active-card .pricing-subtitle,
.pricing-card-custom.active-card .feature-item {
    color: #ffffff !important;
}
.pricing-card-custom.active-card .pricing-subtitle {
    opacity: 0.75;
}
.btn-pricing-cta {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    border: 1px solid #fff0;
    transition: all 0.2s ease;
    display: block;
    text-decoration: none !important;
}
.pricing-card-custom .btn-pricing-cta {
    background: #0f172a;
    color: #fff;
}
.pricing-card-custom .btn-pricing-cta:hover {
    background: #1e293b;
    color: #fff;
}
.pricing-card-custom.active-card .btn-pricing-cta {
    background: #7c3aed !important;
    color: #ffffff !important;
}
.pricing-card-custom.active-card .btn-pricing-cta:hover {
    background: #6d28d9 !important;
}
.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #7c3aed;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgb(124 58 237 / 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.pricing-card-custom .feature-checkmark {
    stroke: #10b981;
}
:root {
    --teal-dark: #f8f9fa;
    --teal-deeper: #ffffff;
    --teal-accent: #7c3aed;
    --teal-hi: #6d28d9;
    --teal-bg: #ffffff;
    --teal-muted: #f5f3ff;
    --teal-border: #e5e7eb;
    --text-dark: #16181b;
    --text-mid: #494b5b;
    --text-light: #6c757d;
}
body {
    background: var(--teal-bg);
    font-family: "Inter", sans-serif;
}
.priv-hero {
    background: #fff0;
    padding: 40px 0 24px;
    position: relative;
    overflow: hidden;
}
.priv-hero::before {
    display: none;
}
.priv-hero::after {
    display: none;
}
.priv-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgb(124 58 237 / 0.08);
    color: #67e8f9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgb(103 232 249 / 0.25);
    margin-bottom: 22px;
}
.priv-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    color: #16181b;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.priv-hero h1 span {
    background: linear-gradient(90deg, #7c3aed, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.priv-updated-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-muted);
    border: 1px solid var(--teal-border);
    color: var(--text-mid);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.priv-commits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.priv-commit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--teal-border);
    border-radius: 12px;
    padding: 12px 18px;
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 600;
}
.priv-commit-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.priv-stats-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 24px rgb(15 76 92 / 0.08);
}
.priv-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    border-right: 1px solid #e2e8f0;
    gap: 4px;
}
.priv-stat-item:last-child {
    border-right: none;
}
.priv-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: #16181b;
    letter-spacing: -1px;
    line-height: 1;
}
.priv-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.priv-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--teal-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #7c3aed;
}
.priv-timeline-wrap {
    padding: 80px 0 60px;
    background: var(--teal-bg);
}
.timeline-track {
    position: relative;
    padding-left: 0;
}
.timeline-track::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--teal-hi) 0,
        var(--teal-hi) 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.5;
    z-index: 0;
}
.timeline-node {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.timeline-icon-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.timeline-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.12);
    background: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.timeline-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 32px 36px;
    flex: 1;
    box-shadow: 0 2px 12px rgb(15 76 92 / 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgb(15 76 92 / 0.12);
}
.timeline-node.even-node .timeline-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.timeline-section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}
.timeline-section-body {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-mid);
}
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.timeline-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.5;
}
.timeline-list li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-hi);
    flex-shrink: 0;
    margin-top: 7px;
}
.rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}
.rights-card {
    background: var(--teal-muted);
    border: 1px solid var(--teal-border);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}
.rights-card:hover {
    transform: scale(1.02);
}
.rights-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rights-card-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}
.rights-card-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
    font-weight: 500;
}
.priv-contact-cta {
    background: var(--teal-dark);
    border-radius: 24px;
    padding: 52px 50px;
    text-align: center;
    margin: 0 0 80px 0;
    position: relative;
    overflow: hidden;
}
.priv-contact-cta::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgb(6 182 212 / 0.12);
    top: -120px;
    right: -80px;
}
.priv-contact-cta h3 {
    font-size: 30px;
    font-weight: 800;
    color: #16181b;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    position: relative;
}
.priv-contact-cta p {
    font-size: 16px;
    color: #494b5b;
    margin-bottom: 28px;
    position: relative;
}
.priv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-hi);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}
.priv-cta-btn:hover {
    background: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(6 182 212 / 0.35);
    color: var(--teal-deeper);
}
@media (max-width: 576px) {
    .timeline-track::before {
        left: 23px;
    }
    .timeline-icon-circle {
        width: 46px;
        height: 46px;
    }
    .timeline-card {
        padding: 22px 20px;
    }
    .rights-grid {
        grid-template-columns: 1fr;
    }
    .priv-stat-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .priv-commits {
        flex-direction: column;
    }
    .priv-contact-cta {
        padding: 36px 24px;
    }
}
:root {
    --rm-primary: #7c3aed;
    --rm-primary-hover: #6d28d9;
    --rm-primary-light: #f5f3ff;
    --rm-primary-lighter: #ede9fe;
    --rm-dark: #0f172a;
    --rm-body-bg: #f8fafc;
    --rm-surface: #ffffff;
    --rm-border: #e2e8f0;
    --rm-border-glow: rgba(124, 58, 237, 0.15);
    --rm-text-dark: #0f172a;
    --rm-text-mid: #475569;
    --rm-text-light: #94a3b8;
    --rm-font-sans: "Inter", sans-serif;
    --rm-font-display: "Poppins", sans-serif;
    --rm-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --rm-radius-sm: 12px;
    --rm-radius-md: 18px;
    --rm-radius-lg: 24px;
    --rm-radius-xl: 36px;
    --rm-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.02);
    --rm-shadow-md: 0 12px 36px rgba(124, 58, 237, 0.04);
    --rm-shadow-lg: 0 20px 48px rgba(124, 58, 237, 0.07);
    --rm-status-completed: #10b981;
    --rm-status-inprogress: #f59e0b;
    --rm-status-planned: #3b82f6;
    --rm-status-researching: #8b5cf6;
}
body {
    font-family: var(--rm-font-sans);
    background-color: var(--rm-body-bg);
    color: var(--rm-text-mid);
    overflow-x: hidden;
}
.rm-section {
    padding: 100px 0;
    position: relative;
}
.rm-section--alt {
    background-color: var(--rm-surface);
}
.rm-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--rm-primary-light);
    color: var(--rm-primary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.rm-title {
    font-family: var(--rm-font-display);
    font-size: 2.75rem;
    font-weight: 850;
    color: var(--rm-text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.rm-subtitle {
    font-size: 1.15rem;
    color: var(--rm-text-mid);
    max-width: 650px;
    margin: 0 auto 60px;
    line-height: 1.7;
}
.rm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 650;
    text-decoration: none;
    transition: all 0.3s var(--rm-ease);
    cursor: pointer;
    border: none;
}
.rm-btn-primary {
    background: linear-gradient(135deg, var(--rm-primary), #9333ea);
    color: #fff;
    box-shadow: 0 4px 18px rgb(124 58 237 / 0.25);
}
.rm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(124 58 237 / 0.4);
    color: #fff;
}
.rm-btn-outline {
    background: var(--rm-surface);
    color: var(--rm-primary);
    border: 2px solid var(--rm-primary-lighter);
}
.rm-btn-outline:hover {
    border-color: var(--rm-primary);
    background: var(--rm-primary-light);
    transform: translateY(-2px);
    color: var(--rm-primary);
}
.rm-glass-card {
    background: rgb(255 255 255 / 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgb(255 255 255 / 0.5);
    border-radius: var(--rm-radius-md);
    box-shadow: var(--rm-shadow-md);
    transition: all 0.35s var(--rm-ease);
}
.rm-hero {
    position: relative;
    padding: 40px 0 24px;
    background: #fff0;
    overflow: hidden;
    border-bottom: 1px solid var(--rm-border);
}
.rm-hero::before {
    display: none;
}
.rm-hero__glow {
    display: none;
}
.rm-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.rm-hero__heading {
    font-family: var(--rm-font-display);
    font-size: 4.25rem;
    font-weight: 900;
    color: var(--rm-text-dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.rm-hero__heading span {
    background: linear-gradient(135deg, var(--rm-primary), #9333ea 60%, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.rm-hero__desc {
    font-size: 1.25rem;
    color: var(--rm-text-mid);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.rm-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.rm-hero__visuals {
    position: relative;
    height: 200px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rm-hero-floating-card {
    position: absolute;
    background: rgb(255 255 255 / 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgb(255 255 255 / 0.6);
    border-radius: var(--rm-radius-md);
    padding: 16px 24px;
    box-shadow: 0 10px 30px rgb(124 58 237 / 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: rmFloat 5s ease-in-out infinite;
}
.rm-hero-floating-card--1 {
    left: 4%;
    bottom: 30px;
    animation-delay: 0s;
}
.rm-hero-floating-card--2 {
    right: 4%;
    bottom: 10px;
    animation-delay: -1.8s;
    animation-duration: 6s;
}
.rm-hero-floating-card--3 {
    bottom: 70px;
    left: 36%;
    animation-delay: -3.2s;
    animation-duration: 5.5s;
}
.rm-hero-floating-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--rm-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--rm-primary);
}
.rm-hero-floating-card__details {
    text-align: left;
}
.rm-hero-floating-card__title {
    font-size: 0.85rem;
    font-weight: 750;
    color: var(--rm-text-dark);
    margin-bottom: 2px;
}
.rm-hero-floating-card__meta {
    font-size: 0.75rem;
    color: var(--rm-text-light);
    font-weight: 550;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rm-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.rm-status-dot--completed {
    background-color: var(--rm-status-completed);
}
.rm-status-dot--inprogress {
    background-color: var(--rm-status-inprogress);
}
.rm-status-dot--planned {
    background-color: var(--rm-status-planned);
}
@keyframes rmGlowPulse {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
@keyframes rmFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}
.rm-overview__grid {
    align-items: center;
}
.rm-overview__content {
    padding-right: 40px;
}
.rm-overview__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--rm-text-mid);
    margin-bottom: 32px;
}
.rm-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.rm-stat-card {
    padding: 24px;
    text-align: left;
    border-radius: var(--rm-radius-md);
    background: var(--rm-surface);
    border: 1px solid var(--rm-border);
    box-shadow: var(--rm-shadow-sm);
    transition: all 0.3s var(--rm-ease);
}
.rm-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rm-shadow-md);
    border-color: var(--rm-primary-lighter);
}
.rm-stat-card__num {
    font-family: var(--rm-font-display);
    font-size: 2.2rem;
    font-weight: 850;
    color: var(--rm-primary);
    line-height: 1.1;
    margin-bottom: 6px;
}
.rm-stat-card__label {
    font-size: 0.95rem;
    font-weight: 650;
    color: var(--rm-text-dark);
    margin-bottom: 4px;
}
.rm-stat-card__desc {
    font-size: 0.8rem;
    color: var(--rm-text-light);
    margin: 0;
}
.rm-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.rm-filter-btn {
    background: var(--rm-surface);
    color: var(--rm-text-mid);
    border: 1px solid var(--rm-border);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s var(--rm-ease);
}
.rm-filter-btn:hover {
    background: var(--rm-primary-light);
    color: var(--rm-primary);
    border-color: var(--rm-primary-lighter);
}
.rm-filter-btn.rm-filter-btn--active {
    background: var(--rm-primary);
    color: #fff;
    border-color: var(--rm-primary);
    box-shadow: 0 4px 12px rgb(124 58 237 / 0.2);
}
.rm-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}
.rm-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(
        to bottom,
        var(--rm-primary-lighter) 0%,
        var(--rm-primary) 30%,
        #ec4899 70%,
        var(--rm-primary-lighter) 100%
    );
    opacity: 0.7;
}
.rm-timeline-quarter {
    position: relative;
    margin-bottom: 80px;
}
.rm-timeline-quarter__title {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 8px 24px;
    background: var(--rm-dark);
    color: #fff;
    font-family: var(--rm-font-display);
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 50px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
    margin-bottom: 40px;
}
.rm-timeline-row {
    display: flex;
    width: 100%;
    gap: 60px;
    position: relative;
}
.rm-timeline-col {
    width: 50%;
    position: relative;
}
.rm-timeline-node {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--rm-surface);
    border: 4px solid var(--rm-primary);
    z-index: 4;
    box-shadow: 0 0 0 4px var(--rm-primary-lighter);
    transition: all 0.3s var(--rm-ease);
}
.rm-timeline-row:nth-child(even) .rm-timeline-node {
    left: calc(50% - 10px);
}
.rm-timeline-row:nth-child(odd) .rm-timeline-node {
    right: calc(50% - 10px);
}
.rm-timeline-card {
    padding: 32px;
    border-radius: var(--rm-radius-md);
    border: 1px solid var(--rm-border);
    background: var(--rm-surface);
    box-shadow: var(--rm-shadow-sm);
    transition: all 0.35s var(--rm-ease);
    position: relative;
}
.rm-timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rm-shadow-lg);
    border-color: var(--rm-primary-lighter);
}
.rm-timeline-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}
.rm-timeline-card__title {
    font-size: 1.25rem;
    font-weight: 750;
    color: var(--rm-text-dark);
    margin: 0;
}
.rm-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.rm-status-badge--completed {
    background: rgb(16 185 129 / 0.1);
    color: var(--rm-status-completed);
}
.rm-status-badge--inprogress {
    background: rgb(245 158 11 / 0.1);
    color: var(--rm-status-inprogress);
}
.rm-status-badge--planned {
    background: rgb(59 130 246 / 0.1);
    color: var(--rm-status-planned);
}
.rm-status-badge--researching {
    background: rgb(139 92 246 / 0.1);
    color: var(--rm-status-researching);
}
.rm-timeline-card__desc {
    font-size: 0.95rem;
    color: var(--rm-text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}
.rm-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rm-progress-bar-bg {
    flex: 1;
    height: 6px;
    background: var(--rm-border);
    border-radius: 50px;
    overflow: hidden;
}
.rm-progress-bar-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 1s var(--rm-ease);
}
.rm-progress-percent {
    font-size: 0.8rem;
    font-weight: 750;
    color: var(--rm-text-dark);
    width: 32px;
    text-align: right;
}
.rm-timeline-row {
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 0.4s var(--rm-ease),
        transform 0.4s var(--rm-ease),
        max-height 0.4s var(--rm-ease),
        margin 0.4s var(--rm-ease),
        padding 0.4s var(--rm-ease);
}
.rm-timeline-row.rm-hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
}
.rm-form-card {
    padding: 40px;
    border-radius: var(--rm-radius-lg);
    background: var(--rm-surface);
    border: 1px solid var(--rm-border);
    box-shadow: var(--rm-shadow-md);
}
.rm-form-group {
    margin-bottom: 20px;
}
.rm-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rm-text-dark);
    margin-bottom: 8px;
}
.rm-form-input,
.rm-form-select,
.rm-form-textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid var(--rm-border);
    background: var(--rm-body-bg);
    color: var(--rm-text-dark);
    font-size: 0.95rem;
    font-family: var(--rm-font-sans);
    transition: all 0.25s var(--rm-ease);
}
.rm-form-input:focus,
.rm-form-select:focus,
.rm-form-textarea:focus {
    outline: none;
    border-color: var(--rm-primary);
    background: var(--rm-surface);
    box-shadow: 0 0 0 3px var(--rm-primary-light);
}
.rm-upvote-board {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rm-upvote-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-radius: var(--rm-radius-md);
    background: var(--rm-surface);
    border: 1px solid var(--rm-border);
    box-shadow: var(--rm-shadow-sm);
    transition: all 0.3s var(--rm-ease);
}
.rm-upvote-card:hover {
    transform: translateX(4px);
    box-shadow: var(--rm-shadow-md);
    border-color: var(--rm-primary-lighter);
}
.rm-upvote-card__info {
    flex: 1;
    padding-right: 20px;
}
.rm-upvote-card__title {
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--rm-text-dark);
    margin-bottom: 4px;
}
.rm-upvote-card__badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--rm-body-bg);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 650;
    color: var(--rm-text-mid);
}
.rm-vote-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid var(--rm-border);
    background: var(--rm-body-bg);
    color: var(--rm-text-dark);
    cursor: pointer;
    transition: all 0.25s var(--rm-ease);
    flex-shrink: 0;
}
.rm-vote-btn:hover {
    border-color: var(--rm-primary);
    background: var(--rm-primary-light);
    color: var(--rm-primary);
}
.rm-vote-btn i {
    font-size: 1.15rem;
    transition: transform 0.2s var(--rm-ease);
}
.rm-vote-btn:hover i {
    transform: translateY(-3px);
}
.rm-vote-btn__count {
    font-size: 0.85rem;
    font-weight: 800;
    margin-top: 2px;
}
.rm-vote-btn--voted {
    background: linear-gradient(135deg, var(--rm-primary), #9333ea) !important;
    border-color: var(--rm-primary) !important;
    color: #fff !important;
    pointer-events: none;
    animation: rmUpvotePop 0.4s var(--rm-ease);
}
.rm-vote-btn--voted i {
    transform: scale(1.1) !important;
}
@keyframes rmUpvotePop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.rm-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--rm-dark);
    color: #fff;
    padding: 16px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s var(--rm-ease);
}
.rm-toast.rm-toast--show {
    transform: translateY(0);
    opacity: 1;
}
.rm-released-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.rm-released-card {
    background: var(--rm-surface);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius-lg);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--rm-ease);
}
.rm-released-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rm-primary), #ec4899);
    opacity: 0.8;
}
.rm-released-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rm-shadow-lg);
    border-color: var(--rm-primary-lighter);
}
.rm-released-card__glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgb(16 185 129 / 0.15) 0%, #fff0 70%);
    pointer-events: none;
}
.rm-released-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.rm-released-card__date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rm-text-light);
    text-transform: uppercase;
}
.rm-released-card__ver {
    display: inline-block;
    padding: 3px 10px;
    background: var(--rm-primary-light);
    color: var(--rm-primary);
    font-size: 0.72rem;
    font-weight: 850;
    border-radius: 50px;
}
.rm-released-card__title {
    font-size: 1.25rem;
    font-weight: 750;
    color: var(--rm-text-dark);
    margin-bottom: 12px;
}
.rm-released-card__desc {
    font-size: 0.9rem;
    color: var(--rm-text-mid);
    line-height: 1.6;
    margin: 0;
}
.rm-integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.rm-integration-card {
    background: var(--rm-surface);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius-md);
    padding: 28px;
    text-align: center;
    transition: all 0.35s var(--rm-ease);
    position: relative;
    overflow: hidden;
}
.rm-integration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rm-shadow-md);
    border-color: var(--rm-primary-lighter);
}
.rm-integration-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--rm-body-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--rm-text-dark);
    margin: 0 auto 16px;
    transition: all 0.3s var(--rm-ease);
}
.rm-integration-card:hover .rm-integration-card__logo {
    background: var(--rm-primary);
    color: #fff;
    transform: scale(1.05);
}
.rm-integration-card__title {
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--rm-text-dark);
    margin-bottom: 12px;
}
.rm-integration-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    color: var(--rm-text-light);
}
.rm-integration-card__status--live {
    color: var(--rm-status-completed);
}
.rm-integration-card__status--soon {
    color: var(--rm-status-inprogress);
}
.rm-feedback__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}
.rm-testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rm-t-card {
    background: var(--rm-surface);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius-md);
    padding: 28px;
    box-shadow: var(--rm-shadow-sm);
}
.rm-t-card__user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.rm-t-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rm-primary-light), var(--rm-primary-lighter));
    color: var(--rm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}
.rm-t-card__name {
    font-size: 0.95rem;
    font-weight: 750;
    color: var(--rm-text-dark);
    margin-bottom: 2px;
}
.rm-t-card__handle {
    font-size: 0.75rem;
    color: var(--rm-text-light);
    font-weight: 550;
}
.rm-t-card__comment {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--rm-text-mid);
    margin: 0;
    font-style: italic;
}
.rm-disc-box {
    padding: 32px;
    background: var(--rm-dark);
    color: #fff;
    border-radius: var(--rm-radius-lg);
    box-shadow: var(--rm-shadow-lg);
    position: relative;
    overflow: hidden;
}
.rm-disc-box::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgb(124 58 237 / 0.18) 0%, #fff0 70%);
    pointer-events: none;
}
.rm-disc-box__title {
    font-family: var(--rm-font-display);
    font-size: 1.25rem;
    font-weight: 750;
    margin-bottom: 12px;
}
.rm-disc-box__p {
    font-size: 0.88rem;
    color: rgb(255 255 255 / 0.65);
    line-height: 1.6;
    margin-bottom: 24px;
}
.rm-disc-preview-item {
    background: rgb(255 255 255 / 0.04);
    border: 1px solid rgb(255 255 255 / 0.06);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s var(--rm-ease);
}
.rm-disc-preview-item:hover {
    background: rgb(255 255 255 / 0.08);
}
.rm-disc-preview-item__title {
    font-size: 0.82rem;
    font-weight: 650;
    color: rgb(255 255 255 / 0.9);
}
.rm-disc-preview-item__stat {
    font-size: 0.72rem;
    color: rgb(255 255 255 / 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}
.rm-faq__wrap {
    max-width: 800px;
    margin: 0 auto;
}
.rm-faq-item {
    background: var(--rm-surface);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s var(--rm-ease);
}
.rm-faq-item:hover {
    border-color: rgb(124 58 237 / 0.25);
    box-shadow: var(--rm-shadow-sm);
}
.rm-faq-btn {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--rm-font-display);
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--rm-text-dark);
    cursor: pointer;
    transition: color 0.3s var(--rm-ease);
}
.rm-faq-btn:focus {
    outline: none;
}
.rm-faq-btn i {
    font-size: 1.25rem;
    color: var(--rm-text-light);
    transition:
        transform 0.3s var(--rm-ease),
        color 0.3s var(--rm-ease);
}
.rm-faq-item--active .rm-faq-btn {
    color: var(--rm-primary);
}
.rm-faq-item--active .rm-faq-btn i {
    transform: rotate(180deg);
    color: var(--rm-primary);
}
.rm-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--rm-ease);
}
.rm-faq-content__inner {
    padding: 0 28px 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--rm-text-mid);
}
.rm-cta {
    padding: 100px 0 120px;
    background-color: var(--rm-surface);
}
.rm-cta__inner {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #ec4899 100%);
    border-radius: var(--rm-radius-xl);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgb(124 58 237 / 0.25);
}
.rm-cta__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    pointer-events: none;
}
.rm-cta__heading {
    font-family: var(--rm-font-display);
    font-size: 3rem;
    font-weight: 850;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.rm-cta__desc {
    font-size: 1.25rem;
    color: rgb(255 255 255 / 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.rm-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.rm-btn-white {
    background: #fff;
    color: var(--rm-primary);
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.08);
}
.rm-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
    color: var(--rm-primary-hover);
}
.rm-btn-white-outline {
    background: #fff0;
    color: #fff;
    border: 2px solid rgb(255 255 255 / 0.4);
}
.rm-btn-white-outline:hover {
    background: rgb(255 255 255 / 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .rm-hero__heading {
        font-size: 3.25rem;
    }
    .rm-title {
        font-size: 2.25rem;
    }
    .rm-released-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rm-integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .rm-feedback__grid {
        grid-template-columns: 1fr;
    }
    .rm-overview__content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .rm-timeline::before {
        left: 24px;
    }
    .rm-timeline-quarter__title {
        left: 24px;
        transform: none;
        margin-bottom: 30px;
    }
    .rm-timeline-row {
        flex-direction: column;
        gap: 0;
        padding-left: 54px;
    }
    .rm-timeline-col {
        width: 100%;
        margin-bottom: 30px;
    }
    .rm-timeline-node {
        left: 16px !important;
        right: auto !important;
    }
}
@media (max-width: 768px) {
    .rm-hero__heading {
        font-size: 2.5rem;
    }
    .rm-hero__desc {
        font-size: 1.1rem;
    }
    .rm-title {
        font-size: 1.85rem;
    }
    .rm-section {
        padding: 70px 0;
    }
    .rm-released-grid {
        grid-template-columns: 1fr;
    }
    .rm-integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rm-stats-grid {
        grid-template-columns: 1fr;
    }
    .rm-hero-floating-card {
        display: none;
    }
    .rm-cta__heading {
        font-size: 2.2rem;
    }
}
.anim-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    border: 1px solid transparent !important;
}
.anim-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgb(124 58 237 / 0.1) !important;
    border-color: rgb(124 58 237 / 0.4) !important;
}
:root {
    --sts-primary: #7c3aed;
    --sts-primary-hover: #6d28d9;
    --sts-primary-light: #f5f3ff;
    --sts-primary-lighter: #ede9fe;
    --sts-dark: #0f172a;
    --sts-body-bg: #f8fafc;
    --sts-surface: #ffffff;
    --sts-border: #e2e8f0;
    --sts-border-glow: rgba(124, 58, 237, 0.1);
    --sts-text-dark: #0f172a;
    --sts-text-mid: #475569;
    --sts-text-light: #94a3b8;
    --sts-success: #10b981;
    --sts-success-light: rgba(16, 185, 129, 0.08);
    --sts-warning: #f59e0b;
    --sts-warning-light: rgba(245, 158, 11, 0.08);
    --sts-danger: #ef4444;
    --sts-danger-light: rgba(239, 68, 68, 0.08);
    --sts-info: #3b82f6;
    --sts-info-light: rgba(59, 130, 246, 0.08);
    --sts-font-sans: "Inter", sans-serif;
    --sts-font-display: "Poppins", sans-serif;
    --sts-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --sts-radius-sm: 12px;
    --sts-radius-md: 18px;
    --sts-radius-lg: 24px;
    --sts-radius-xl: 36px;
    --sts-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.02);
    --sts-shadow-md: 0 12px 36px rgba(124, 58, 237, 0.04);
    --sts-shadow-lg: 0 20px 48px rgba(124, 58, 237, 0.07);
}
[data-bs-theme="dark"] {
    --sts-body-bg: #090514;
    --sts-surface: #120b24;
    --sts-border: #23163a;
    --sts-border-glow: rgba(168, 85, 247, 0.15);
    --sts-text-dark: #f8fafc;
    --sts-text-mid: #94a3b8;
    --sts-text-light: #64748b;
    --sts-primary-light: #20133a;
    --sts-primary-lighter: #2d1b50;
}
body {
    background-color: var(--sts-body-bg);
    color: var(--sts-text-mid);
    font-family: var(--sts-font-sans);
    overflow-x: hidden;
    transition: background-color 0.4s var(--sts-ease);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sts-font-display);
    color: var(--sts-text-dark);
    font-weight: 700;
}
.sts-section {
    padding: 80px 0;
    position: relative;
}
.sts-section--alt {
    background-color: var(--sts-primary-light);
    transition: background-color 0.4s var(--sts-ease);
}
.sts-card {
    padding: 30px;
    border-radius: var(--sts-radius-md);
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    box-shadow: var(--sts-shadow-sm);
    transition: all 0.3s var(--sts-ease);
    position: relative;
    overflow: hidden;
}
.sts-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sts-shadow-md);
    border-color: var(--sts-primary-hover);
}
.sts-pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.sts-pulse-dot::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    animation: sts-pulse 2s infinite ease-in-out;
}
.sts-pulse-dot--success {
    background-color: var(--sts-success);
}
.sts-pulse-dot--success::after {
    background-color: var(--sts-success);
}
.sts-pulse-dot--warning {
    background-color: var(--sts-warning);
}
.sts-pulse-dot--warning::after {
    background-color: var(--sts-warning);
}
.sts-pulse-dot--danger {
    background-color: var(--sts-danger);
}
.sts-pulse-dot--danger::after {
    background-color: var(--sts-danger);
}
@keyframes sts-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}
.sts-hero {
    padding: 40px 0 24px;
    position: relative;
    background: #fff0;
    border-bottom: 1px solid var(--sts-border);
    overflow: hidden;
}
.sts-hero__glow {
    display: none;
}
.sts-hero__grid {
    display: none;
}
.sts-hero__container {
    position: relative;
    z-index: 1;
}
.sts-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--sts-border);
    background: var(--sts-surface);
    box-shadow: var(--sts-shadow-sm);
    margin-bottom: 24px;
}
.sts-badge--main {
    border-color: rgb(16 185 129 / 0.3);
    background: rgb(16 185 129 / 0.05);
    color: var(--sts-success);
}
.sts-hero__title {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--sts-text-dark) 30%, var(--sts-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}
.sts-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--sts-text-mid);
    max-width: 650px;
    margin: 0 auto 40px;
}
.sts-refresh-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sts-text-mid);
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: var(--sts-shadow-sm);
}
.sts-refresh-circle {
    width: 14px;
    height: 14px;
    transform: rotate(-90deg);
}
.sts-refresh-circle svg {
    width: 14px;
    height: 14px;
}
.sts-refresh-circle circle {
    fill: none;
    stroke-width: 3;
}
.sts-refresh-circle__bg {
    stroke: var(--sts-border);
}
.sts-refresh-circle__progress {
    stroke: var(--sts-primary);
    stroke-linecap: round;
    stroke-dasharray: 44;
    stroke-dashoffset: 44;
    transition: stroke-dashoffset 1s linear;
}
.sts-hero-card {
    background: rgb(255 255 255 / 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgb(226 232 240 / 0.8);
    border-radius: var(--sts-radius-lg);
    box-shadow: var(--sts-shadow-lg);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s var(--sts-ease);
}
[data-bs-theme="dark"] .sts-hero-card {
    background: rgb(18 11 36 / 0.6);
    border: 1px solid rgb(35 22 58 / 0.7);
}
.sts-hero-card__value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--sts-primary);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
    display: inline-block;
    position: relative;
}
.sts-hero-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sts-text-dark);
    margin-bottom: 24px;
}
.sts-hero-card__wave {
    width: 100%;
    height: 80px;
    margin: 10px 0 20px;
    opacity: 0.95;
}
.sts-section__title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}
.sts-section__desc {
    font-size: 1.05rem;
    color: var(--sts-text-mid);
    margin-bottom: 50px;
}
.sts-status-card {
    padding: 24px;
    border-radius: var(--sts-radius-md);
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    box-shadow: var(--sts-shadow-sm);
    transition: all 0.3s var(--sts-ease);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}
.sts-status-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sts-shadow-md);
    border-color: var(--sts-primary-hover);
}
.sts-status-card__icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sts-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--sts-primary);
    flex-shrink: 0;
    transition: all 0.3s var(--sts-ease);
}
.sts-status-card:hover .sts-status-card__icon-box {
    background: var(--sts-primary);
    color: #fff;
}
.sts-status-card__body {
    flex-grow: 1;
}
.sts-status-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.sts-status-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sts-text-dark);
    margin: 0;
}
.sts-status-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.sts-status-card__badge--success {
    background-color: var(--sts-success-light);
    color: var(--sts-success);
}
.sts-status-card__badge--warning {
    background-color: var(--sts-warning-light);
    color: var(--sts-warning);
}
.sts-status-card__metrics {
    display: flex;
    gap: 24px;
    border-top: 1px solid var(--sts-border);
    padding-top: 12px;
    margin-top: 12px;
}
.sts-status-card__metric-item {
    display: flex;
    flex-direction: column;
}
.sts-status-card__metric-label {
    font-size: 0.75rem;
    color: var(--sts-text-light);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
}
.sts-status-card__metric-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sts-text-dark);
}
.sts-metrics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.sts-metric-widget {
    padding: 24px;
    border-radius: var(--sts-radius-md);
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    box-shadow: var(--sts-shadow-sm);
    transition: all 0.3s var(--sts-ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.sts-metric-widget:hover {
    transform: translateY(-4px);
    box-shadow: var(--sts-shadow-md);
    border-color: var(--sts-primary);
}
.sts-metric-widget__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.sts-metric-widget__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sts-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sts-metric-widget__icon {
    font-size: 1.2rem;
    color: var(--sts-primary);
    opacity: 0.8;
}
.sts-metric-widget__val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--sts-text-dark);
    line-height: 1.1;
    margin-bottom: 8px;
}
.sts-metric-widget__chart {
    width: 100%;
    height: 40px;
    margin-top: 12px;
}
.sts-uptime-row {
    padding: 28px 0;
    border-bottom: 1px solid var(--sts-border);
}
.sts-uptime-row:last-child {
    border-bottom: none;
}
.sts-uptime-row__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.sts-uptime-row__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sts-text-dark);
}
.sts-uptime-row__percentage {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sts-success);
}
.sts-uptime-row__percentage--degraded {
    color: var(--sts-warning);
}
.sts-uptime-ticks {
    display: flex;
    gap: 3px;
    width: 100%;
    height: 28px;
    margin-bottom: 8px;
}
.sts-uptime-tick {
    flex: 1;
    background-color: var(--sts-success);
    border-radius: 2px;
    transition: all 0.2s var(--sts-ease);
    cursor: pointer;
    position: relative;
}
.sts-uptime-tick:hover {
    transform: scaleY(1.3);
    opacity: 0.8;
}
.sts-uptime-tick--warning {
    background-color: var(--sts-warning);
}
.sts-uptime-tick--danger {
    background-color: var(--sts-danger);
}
.sts-uptime-ticks__labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--sts-text-light);
    font-weight: 600;
}
.sts-tooltip {
    position: absolute;
    z-index: 1050;
    background: rgb(15 23 42 / 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgb(255 255 255 / 0.15);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    pointer-events: none;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
    opacity: 0;
    transform: translate(-50%, -100%) scale(0.9);
    width: max-content;
    max-width: 200px;
}
.sts-tooltip::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgb(15 23 42 / 0.95);
    border-right: 1px solid rgb(255 255 255 / 0.15);
    border-bottom: 1px solid rgb(255 255 255 / 0.15);
}
.sts-region-card {
    padding: 20px;
    border-radius: var(--sts-radius-md);
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    box-shadow: var(--sts-shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    transition: all 0.3s var(--sts-ease);
}
.sts-region-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sts-shadow-md);
    border-color: var(--sts-primary);
}
.sts-region-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sts-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sts-primary);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.sts-region-card__body {
    flex-grow: 1;
}
.sts-region-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sts-text-dark);
    margin-bottom: 2px;
}
.sts-region-card__latency {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sts-text-mid);
    display: flex;
    align-items: center;
    gap: 6px;
}
.sts-region-card__status {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sts-success);
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sts-region-card__status--degraded {
    color: var(--sts-warning);
}
.sts-region-card__bar-bg {
    width: 100%;
    height: 4px;
    background-color: var(--sts-border);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}
.sts-region-card__bar-fill {
    height: 100%;
    background-color: var(--sts-success);
    border-radius: 2px;
}
.sts-region-card__bar-fill--warning {
    background-color: var(--sts-warning);
}
.sts-timeline {
    position: relative;
    padding-left: 36px;
}
.sts-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 15px;
    width: 2px;
    bottom: 20px;
    background: var(--sts-border);
}
.sts-timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.sts-timeline-item:last-child {
    margin-bottom: 0;
}
.sts-timeline-item__node {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sts-surface);
    border: 2px solid var(--sts-border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s var(--sts-ease);
}
.sts-timeline-item__node--resolved {
    border-color: var(--sts-success);
    color: var(--sts-success);
}
.sts-timeline-item__node--completed {
    border-color: var(--sts-primary);
    color: var(--sts-primary);
}
.sts-timeline-card {
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    border-radius: var(--sts-radius-md);
    padding: 24px;
    box-shadow: var(--sts-shadow-sm);
    transition: all 0.3s var(--sts-ease);
}
.sts-timeline-card:hover {
    box-shadow: var(--sts-shadow-md);
    border-color: var(--sts-primary-hover);
}
.sts-timeline-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}
.sts-timeline-card__title {
    font-size: 1.2rem;
    font-weight: 750;
    color: var(--sts-text-dark);
    margin: 0 0 4px;
}
.sts-timeline-card__meta {
    font-size: 0.85rem;
    color: var(--sts-text-light);
    font-weight: 600;
}
.sts-timeline-card__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--sts-text-mid);
    margin-bottom: 18px;
}
.sts-timeline-card__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sts-primary);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}
.sts-timeline-card__toggle:hover {
    color: var(--sts-primary-hover);
}
.sts-timeline-card__toggle i {
    transition: transform 0.25s ease;
}
.sts-timeline-card__toggle.collapsed i {
    transform: rotate(0);
}
.sts-timeline-card__toggle:not(.collapsed) i {
    transform: rotate(180deg);
}
.sts-timeline-logs {
    border-top: 1px solid var(--sts-border);
    padding-top: 16px;
    margin-top: 16px;
}
.sts-timeline-log-row {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
}
.sts-timeline-log-row:last-child {
    margin-bottom: 0;
}
.sts-timeline-log-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--sts-primary);
}
.sts-timeline-log-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sts-primary);
    margin-bottom: 2px;
}
.sts-timeline-log-text {
    font-size: 0.88rem;
    color: var(--sts-text-mid);
    line-height: 1.5;
}
.sts-maint-card {
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    border-radius: var(--sts-radius-md);
    padding: 30px;
    box-shadow: var(--sts-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s var(--sts-ease);
}
.sts-maint-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sts-shadow-md);
    border-color: var(--sts-primary);
}
.sts-maint-card__header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.sts-calendar-ui {
    width: 54px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid var(--sts-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-shrink: 0;
    box-shadow: var(--sts-shadow-sm);
}
.sts-calendar-ui__month {
    background-color: var(--sts-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 0;
    text-transform: uppercase;
}
.sts-calendar-ui__day {
    background-color: var(--sts-surface);
    color: var(--sts-text-dark);
    font-size: 1.25rem;
    font-weight: 800;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sts-maint-card__title {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--sts-text-dark);
    margin: 0 0 4px;
}
.sts-maint-card__meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sts-text-light);
}
.sts-maint-card__desc {
    font-size: 0.92rem;
    color: var(--sts-text-mid);
    line-height: 1.5;
    margin-bottom: 24px;
}
.sts-countdown {
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--sts-border);
    padding-top: 20px;
}
.sts-countdown__item {
    flex: 1;
    background: var(--sts-primary-light);
    border: 1px solid var(--sts-border);
    border-radius: 10px;
    padding: 8px 4px;
    text-align: center;
}
.sts-countdown__num {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--sts-primary);
    line-height: 1;
    margin-bottom: 2px;
}
.sts-countdown__label {
    font-size: 0.65rem;
    color: var(--sts-text-light);
    text-transform: uppercase;
    font-weight: 700;
}
.sts-sub-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.sts-sub-tab-btn {
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    color: var(--sts-text-mid);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--sts-shadow-sm);
    transition: all 0.25s var(--sts-ease);
}
.sts-sub-tab-btn:hover {
    border-color: var(--sts-primary);
    color: var(--sts-primary);
}
.sts-sub-tab-btn.active {
    background-color: var(--sts-primary);
    border-color: var(--sts-primary);
    color: #fff;
    box-shadow: var(--sts-shadow-md);
}
.sts-sub-panel {
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    border-radius: var(--sts-radius-lg);
    padding: 40px;
    box-shadow: var(--sts-shadow-lg);
    max-width: 600px;
    margin: 0 auto;
    display: none;
    animation: sts-fade-in 0.4s var(--sts-ease) forwards;
}
.sts-sub-panel.active {
    display: block;
}
@keyframes sts-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.sts-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--sts-border);
    background: var(--sts-body-bg);
    color: var(--sts-text-dark);
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: all 0.25s var(--sts-ease);
}
.sts-input:focus {
    outline: none;
    border-color: var(--sts-primary);
    box-shadow: 0 0 0 3px rgb(124 58 237 / 0.15);
    background: var(--sts-surface);
}
.sts-sub-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    border-top: 1px solid var(--sts-border);
    padding-top: 18px;
}
.sts-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sts-text-mid);
    cursor: pointer;
}
.sts-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    accent-color: var(--sts-primary);
    cursor: pointer;
}
.sts-accordion-item {
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    border-radius: var(--sts-radius-md) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--sts-shadow-sm);
    transition: all 0.3s var(--sts-ease);
}
.sts-accordion-item:hover {
    border-color: var(--sts-primary);
    box-shadow: var(--sts-shadow-md);
}
.sts-accordion-button {
    background: var(--sts-surface) !important;
    color: var(--sts-text-dark) !important;
    font-weight: 750;
    font-size: 1.05rem;
    padding: 22px 28px;
    border: none;
    box-shadow: none !important;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sts-accordion-button::after {
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 1.1rem;
    color: var(--sts-primary);
    transition: transform 0.3s ease;
    margin-left: auto;
}
.sts-accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
.sts-accordion-body {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--sts-text-mid);
}
.sts-cta-banner {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
    border-radius: var(--sts-radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sts-shadow-lg);
}
.sts-cta-banner__glow-1 {
    position: absolute;
    top: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgb(255 255 255 / 0.15) 0%, #fff0 70%);
    pointer-events: none;
}
.sts-cta-banner__glow-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgb(255 255 255 / 0.15) 0%, #fff0 70%);
    pointer-events: none;
}
.sts-cta-banner__title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.sts-cta-banner__desc {
    color: rgb(255 255 255 / 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.sts-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.25s var(--sts-ease);
    text-decoration: none;
    cursor: pointer;
}
.sts-btn-primary {
    background-color: var(--sts-primary);
    border: 1px solid var(--sts-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgb(124 58 237 / 0.3);
}
.sts-btn-primary:hover {
    background-color: var(--sts-primary-hover);
    border-color: var(--sts-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(124 58 237 / 0.45);
    color: #fff;
}
.sts-btn-white {
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--sts-primary);
    box-shadow: 0 4px 14px rgb(0 0 0 / 0.05);
}
.sts-btn-white:hover {
    background-color: var(--sts-primary-light);
    border-color: var(--sts-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(255 255 255 / 0.15);
    color: var(--sts-primary-hover);
}
.sts-btn-outline-white {
    background-color: #fff0;
    border: 2px solid rgb(255 255 255 / 0.6);
    color: #fff;
}
.sts-btn-outline-white:hover {
    border-color: #fff;
    background-color: rgb(255 255 255 / 0.1);
    color: #fff;
    transform: translateY(-2px);
}
.sts-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--sts-surface);
    border: 1px solid var(--sts-border);
    border-left: 4px solid var(--sts-success);
    box-shadow: var(--sts-shadow-lg);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sts-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.sts-sub-feedback {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sts-success);
    margin-top: 12px;
    display: none;
}
:root {
    --slate-hero: #f8f9fa;
    --slate-deep: #ffffff;
    --amber: #7c3aed;
    --amber-hi: #6d28d9;
    --amber-pale: #f5f3ff;
    --amber-border: #ede9fe;
    --text-dark: #16181b;
    --text-mid: #494b5b;
    --text-light: #6c757d;
    --surface: #ffffff;
    --surface-alt: #f8f9fa;
    --border-color: #e5e7eb;
}
body {
    background: var(--surface-alt);
    font-family: "Inter", sans-serif;
}
.terms-hero {
    background: #fff0;
    padding: 40px 0 24px;
    position: relative;
    overflow: hidden;
}
.terms-hero::before,
.terms-hero::after {
    display: none;
}
.terms-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--amber-pale);
    color: var(--amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--amber-border);
    margin-bottom: 22px;
}
.terms-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 18px;
}
.terms-hero h1 .amber-text {
    color: var(--amber);
}
.terms-hero-sub {
    font-size: 16px;
    color: var(--text-mid);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 520px;
}
.terms-updated-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--amber-pale);
    border: 1px solid var(--amber-border);
    color: var(--text-mid);
    font-size: 12.5px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.terms-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn-amber {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.btn-amber:hover {
    background: var(--amber-hi);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(124 58 237 / 0.25);
    color: #fff;
}
.btn-outline-amber {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff0;
    color: var(--text-dark);
    font-size: 14.5px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid var(--border-color);
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-outline-amber:hover {
    border-color: var(--amber);
    color: var(--amber);
    background: var(--amber-pale);
}
.toc-wrapper {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 36px 40px;
    margin: -30px auto 56px auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgb(15 23 42 / 0.08);
    max-width: 860px;
}
.toc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}
.toc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--amber-pale);
    border: 1px solid var(--amber-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
}
.toc-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}
.toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
}
.toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.18s ease;
    border: 1px solid #fff0;
}
.toc-link:hover {
    background: var(--amber-pale);
    border-color: var(--amber-border);
    color: var(--text-dark);
}
.toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--amber-pale);
    border: 1px solid var(--amber-border);
    font-size: 11px;
    font-weight: 800;
    color: var(--amber);
    flex-shrink: 0;
    font-feature-settings: "tnum";
}
.toc-link:hover .toc-num {
    background: var(--amber);
    border-color: var(--amber);
    color: #fff;
}
.terms-articles-section {
    padding: 0 0 80px;
}
.terms-articles-wrap {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.article-card {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 40px 44px;
    position: relative;
    overflow: hidden;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
.article-card:hover {
    box-shadow: 0 12px 40px rgb(15 23 42 / 0.09);
    transform: translateY(-2px);
}
.article-num {
    position: absolute;
    top: 28px;
    right: 36px;
    font-size: 72px;
    font-weight: 900;
    color: var(--amber);
    opacity: 0.12;
    line-height: 1;
    letter-spacing: -3px;
    pointer-events: none;
    font-feature-settings: "tnum";
    user-select: none;
}
.article-num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-pale);
    border: 1.5px solid var(--amber-border);
    color: var(--amber);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-feature-settings: "tnum";
}
.article-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--amber) 0%, var(--amber-border) 40%, transparent 100%);
    margin: 14px 0 20px 0;
    opacity: 0.6;
}
.article-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}
.article-body {
    font-size: 15.5px;
    line-height: 1.78;
    color: var(--text-mid);
}
.article-body p {
    margin-bottom: 12px;
}
.article-body p:last-child {
    margin-bottom: 0;
}
.article-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.article-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.55;
}
.article-list li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
    margin-top: 6px;
}
.keypoint-callout {
    background: var(--amber-pale);
    border: 1px solid var(--amber-border);
    border-left: 4px solid var(--amber);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 24px 0;
}
.keypoint-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
.keypoint-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgb(245 158 11 / 0.3);
}
.keypoint-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #92400e;
    margin-bottom: 4px;
}
.keypoint-text {
    font-size: 14.5px;
    color: #78350f;
    font-weight: 500;
    line-height: 1.55;
}
.terms-final-cta {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-hi) 100%);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    max-width: 860px;
    margin: 0 auto 80px auto;
    position: relative;
    overflow: hidden;
}
.terms-final-cta::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.1);
    top: -150px;
    right: -80px;
    pointer-events: none;
}
.terms-final-cta::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgb(0 0 0 / 0.05);
    bottom: -80px;
    left: -50px;
    pointer-events: none;
}
.terms-final-cta h3 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
    position: relative;
}
.terms-final-cta p {
    font-size: 16px;
    color: rgb(255 255 255 / 0.85);
    margin-bottom: 28px;
    position: relative;
}
.btn-dark-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--amber);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}
.btn-dark-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
    color: var(--amber-hi);
}
.terms-intro-card {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 36px 44px;
    max-width: 860px;
    margin: 0 auto 28px auto;
    box-shadow: 0 2px 12px rgb(15 23 42 / 0.05);
}
.terms-intro-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-mid);
    margin: 0;
}
@media (max-width: 768px) {
    .toc-grid {
        grid-template-columns: 1fr;
    }
    .toc-wrapper {
        padding: 28px 24px;
    }
    .article-card {
        padding: 28px 24px;
    }
    .article-num {
        font-size: 52px;
        top: 20px;
        right: 20px;
    }
    .terms-final-cta {
        padding: 40px 24px;
    }
    .terms-hero h1 {
        letter-spacing: -1px;
    }
    .terms-intro-card {
        padding: 28px 24px;
    }
}
#footer-cta-section {
    display: none;
}
.footer-dark {
    background-color: #0b0f19 !important;
    color: #94a3b8 !important;
    font-family: "Inter", sans-serif !important;
    border-top: 1px solid #1e293b !important;
}
.footer-dark a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 550 !important;
    transition: color 0.2s ease !important;
}
.footer-dark a:hover {
    color: #ffffff !important;
}
.footer-dark .footer-title {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    margin-bottom: 22px !important;
    text-transform: uppercase !important;
}
.footer-dark .social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s ease;
}
.footer-dark .social-icon-btn:hover {
    background: #7c3aed;
    color: #ffffff !important;
    transform: translateY(-2px);
}
.premium-nav .nav-link {
    font-weight: 500;
    font-size: 14.5px;
    color: #475569 !important;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: all 0.2s ease;
    position: relative;
}
.premium-nav .nav-link:hover {
    color: #0f172a !important;
    background: rgb(15 23 42 / 0.04);
}
.premium-nav .nav-link.active {
    color: #7c3aed !important;
    font-weight: 700;
    background: rgb(124 58 237 / 0.08);
}
.fbs__net-navbar .navbar-brand img.logo.dark {
    display: block !important;
}
.fbs__net-navbar .navbar-brand img.logo.light {
    display: none !important;
}
[data-bs-theme="dark"] .fbs__net-navbar {
    background: rgb(15 23 42 / 0.85) !important;
    border-bottom: 1px solid rgb(255 255 255 / 0.05) !important;
}
[data-bs-theme="dark"] .fbs__net-navbar .navbar-brand span,
[data-bs-theme="dark"] .fbs__net-navbar .navbar-toggler i {
    color: #f8fafc !important;
}
[data-bs-theme="dark"] .premium-nav .nav-link {
    color: #94a3b8 !important;
}
[data-bs-theme="dark"] .premium-nav .nav-link:hover {
    color: #f8fafc !important;
    background: rgb(255 255 255 / 0.05);
}
[data-bs-theme="dark"] .premium-nav .nav-link.active {
    color: #a78bfa !important;
    background: rgb(167 139 250 / 0.1);
}
[data-bs-theme="dark"] .offcanvas {
    background: #0f172a;
}
[data-bs-theme="dark"] .offcanvas-header {
    border-bottom: 1px solid rgb(255 255 255 / 0.05) !important;
}
[data-bs-theme="dark"] .fbs__net-navbar .navbar-brand img.logo.dark {
    display: none !important;
}
[data-bs-theme="dark"] .fbs__net-navbar .navbar-brand img.logo.light {
    display: block !important;
}

/* --- Blog Details Readability Improvements --- */
.article-container {
    
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px;
    padding-right: 15px;
}

.article-container .article-title {
    font-size: 42px !important;
    line-height: 1.3 !important;
    text-align: left !important;
    margin-bottom: 20px !important;
}

.article-body h2 {
    font-size: 32px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    margin-top: 48px !important;
    margin-bottom: 24px !important;
}

.article-body h3 {
    font-size: 26px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
}

.article-body p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    text-align: left !important;
    margin-bottom: 24px !important;
}

.article-body ul, .article-body ol {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 24px !important;
}

.article-body li {
    margin-bottom: 12px !important;
}

.article-body {
    text-align: left !important;
}


/* --- Custom Blog FAQ Accordion --- */
.blog-faq-section {
    margin-top: 60px;
    margin-bottom: 40px;
}
.blog-faq-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--bs-heading-color);
    margin-bottom: 24px;
}
.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-accordion-item {
    background: var(--bs-body-bg);
    border: 1px solid var(--border-color, #E5E7EB);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.05);
}
.faq-accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}
.faq-accordion-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--bs-heading-color);
    transition: color 0.3s ease;
}
.faq-accordion-icon {
    color: #94A3B8;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-accordion-item.active .faq-accordion-title {
    color: #7C3AED;
}
.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
    color: #7C3AED;
}
.faq-accordion-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-accordion-content {
    padding: 0 24px 24px 24px;
    color: var(--text-muted, #494B5B);
    font-size: 15.5px;
    line-height: 1.7;
}


/* --- Blog Hero Image - Square & No Cropping --- */
.article-container .article-hero-img {
    max-width: 600px !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 auto 40px auto !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-radius: 16px !important;
}


/* --- Blog Content Images --- */
.article-body img {
    max-width: 85% !important;
    height: auto !important;
    border-radius: 12px !important;
    margin: 40px auto !important;
    display: block !important;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08) !important;
    border: 1px solid var(--border-color, #E5E7EB) !important;
}
@media (max-width: 768px) {
    .article-body img {
        max-width: 100% !important;
    }
}


/* --- Override Blog Content Images Size --- */
.article-body img {
    max-width: 60% !important;
}
@media (max-width: 768px) {
    .article-body img {
        max-width: 100% !important;
    }
}

/* Admin Header CSS */
/* Modern DataTables Styling Overrides for light and dark modes */
        .dataTables_wrapper .dataTables_length select,
        .dataTables_wrapper .dataTables_filter input {
            border: 1px solid #e2e8f0 !important;
            border-radius: 0.5rem !important;
            padding: 0.375rem 0.75rem !important;
            outline: none !important;
        }
        .dark .dataTables_wrapper .dataTables_length select,
        .dark .dataTables_wrapper .dataTables_filter input {
            background-color: #1e293b !important;
            border-color: #334155 !important;
            color: #f1f5f9 !important;
        }
        .dataTables_wrapper .dataTables_length, 
        .dataTables_wrapper .dataTables_filter, 
        .dataTables_wrapper .dataTables_info, 
        .dataTables_wrapper .dataTables_processing, 
        .dataTables_wrapper .dataTables_paginate {
            color: #475569 !important;
        }
        .dark .dataTables_wrapper .dataTables_length, 
        .dark .dataTables_wrapper .dataTables_filter, 
        .dark .dataTables_wrapper .dataTables_info, 
        .dark .dataTables_wrapper .dataTables_processing, 
        .dark .dataTables_wrapper .dataTables_paginate {
            color: #94a3b8 !important;
        }
        table.dataTable {
            border-collapse: collapse !important;
            width: 100% !important;
            margin-top: 1rem !important;
            margin-bottom: 1rem !important;
            border-bottom: 1px solid #e2e8f0 !important;
        }
        .dark table.dataTable {
            border-bottom: 1px solid #334155 !important;
        }
        table.dataTable thead th {
            border-bottom: 2px solid #e2e8f0 !important;
            background-color: #f8fafc !important;
            color: #1e293b !important;
            font-weight: 600 !important;
        }
        .dark table.dataTable thead th {
            border-bottom: 2px solid #334155 !important;
            background-color: #0f172a !important;
            color: #f1f5f9 !important;
        }
        table.dataTable tbody tr {
            background-color: transparent !important;
        }
        table.dataTable.no-footer {
            border-bottom: 1px solid #e2e8f0 !important;
        }
        .dark table.dataTable.no-footer {
            border-bottom: 1px solid #334155 !important;
        }
        .dataTables_wrapper .dataTables_paginate .paginate_button.current {
            background: #7c3aed !important;
            color: white !important;
            border-color: #7c3aed !important;
            border-radius: 0.375rem !important;
        }
        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            background: #6d28d9 !important;
            color: white !important;
            border-color: #6d28d9 !important;
        }
        .dark .dataTables_wrapper .dataTables_paginate .paginate_button {
            color: #f1f5f9 !important;
        }


