/* ==========================================
   Debtia CSS Variables
   ========================================== */
:root {
    --debtia-radius-sm: 16px;
    --debtia-radius-md: 24px;
    --debtia-radius-lg: 32px;
    --debtia-radius-section: var(--debtia-radius-lg);
    --debtia-radius-card: var(--debtia-radius-lg);
    --debtia-section-margin: 3rem;
}

@media (max-width: 991.98px) {
    :root {
        --debtia-section-margin: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --debtia-radius-section: var(--debtia-radius-md);
        --debtia-section-margin: 1rem;
    }
}

/* Utility class for consistent border-radius on sections */
.debtia-section-radius {
    border-radius: var(--debtia-radius-section);
}

.debtia-text {
    background: -webkit-linear-gradient(
        30deg,
        var(--bs-primary),
        var(--bs-secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.debtia-text-white {
    background: -webkit-linear-gradient(30deg, var(--bs-primary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.debtia-gradient {
    --debtia-noise-size: 200px; /* Juster denne værdi globalt */
    --debtia-noise-opacity: 0.2; /* Juster synlighed */
    --_noise-texture: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'><defs><filter id='n' x='0' y='0' width='100%' height='100%' color-interpolation-filters='sRGB'><feTurbulence type='fractalNoise' baseFrequency='0.3' numOctaves='3' stitchTiles='stitch' result='t'/><feColorMatrix type='saturate' values='0' in='t' result='g'/><feComponentTransfer in='g' result='a'><feFuncA type='linear' slope='0.5'/></feComponentTransfer></filter></defs><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background: var(--_gradient) #000000 !important;
    position: relative;
}
.debtia-gradient-white {
    --debtia-noise-size: 200px; /* Juster denne værdi globalt */
    --debtia-noise-opacity: 0.2; /* Juster synlighed */
    --_noise-texture: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'><defs><filter id='n' x='0' y='0' width='100%' height='100%' color-interpolation-filters='sRGB'><feTurbulence type='fractalNoise' baseFrequency='0.3' numOctaves='3' stitchTiles='stitch' result='t'/><feColorMatrix type='saturate' values='0' in='t' result='g'/><feComponentTransfer in='g' result='a'><feFuncA type='linear' slope='0.5'/></feComponentTransfer></filter></defs><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background: var(--_gradient) #ffffff;
    position: relative;
}

.debtia-gradient::after,
.debtia-gradient-white::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--_noise-texture);
    background-size: var(--debtia-noise-size);
    background-position: 0 0;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 1;
    opacity: var(--debtia-noise-opacity);
}

/* Gradient 1 - Default Debtia (Blå domineret) */
.debtia-gradient-1 {
    --_gradient:
        radial-gradient(at 83% 26%, #002954 0px, transparent 50%),
        radial-gradient(at 27% 6%, #0c3860 0px, transparent 50%),
        radial-gradient(at 28% 93%, #057861 0px, transparent 50%);
}

/* Gradient 2 - Grøn domineret */
.debtia-gradient-2 {
    --_gradient:
        radial-gradient(at 40% 20%, #088c76 0px, transparent 50%),
        radial-gradient(at 80% 60%, #002954 0px, transparent 50%),
        radial-gradient(at 20% 80%, #0c3860 0px, transparent 50%);
}

/* Gradient 3 - Balanced mix */
.debtia-gradient-3 {
    --_gradient:
        radial-gradient(at 50% 50%, #002954 0px, transparent 50%),
        radial-gradient(at 80% 20%, #088c76 0px, transparent 50%),
        radial-gradient(at 20% 80%, #057861 0px, transparent 50%),
        radial-gradient(at 70% 90%, #0c3860 0px, transparent 50%);
}

/* Gradient 4 - Subtil (lighter) */
.debtia-gradient-4 {
    --_gradient:
        radial-gradient(at 60% 30%, rgba(0, 41, 84, 0.8) 0px, transparent 60%),
        radial-gradient(
            at 30% 70%,
            rgba(8, 140, 118, 0.6) 0px,
            transparent 60%
        ),
        radial-gradient(at 85% 85%, rgba(12, 56, 96, 0.7) 0px, transparent 60%);
}

/* Gradient 5 - Dramatisk (dark) */
.debtia-gradient-5 {
    --_gradient:
        radial-gradient(at 90% 10%, #002954 0px, transparent 40%),
        radial-gradient(at 10% 90%, #088c76 0px, transparent 40%),
        radial-gradient(at 50% 50%, #001529 0px, transparent 60%);
}

.debtia-gradient-white.debtia-gradient-1 {
    --_gradient:
        radial-gradient(at 83% 26%, #002954 0px, transparent 50%),
        radial-gradient(at 27% 6%, #0c3860 0px, transparent 50%),
        radial-gradient(at 28% 93%, #057861 0px, transparent 50%);
}
.debtia-gradient-white.debtia-gradient-2 {
    --_gradient:
        radial-gradient(at 85.4% 85.1%, #78dec9 0px, transparent 50%),
        radial-gradient(at 25.4% 19.4%, #78ebd4 0px, transparent 50%);
}

/* Sikr at indhold i gradient elementer er over noise */
.debtia-gradient > *:not(.parallax-bg) {
    position: relative;
    z-index: 2;
}

.banner-shape {
    position: absolute !important;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
}
.banner-shape > :first-child,
.banner-shape > :last-child {
    position: absolute;
    max-width: 350px;
    height: auto;
}
.banner-shape > :first-child {
    top: 0;
    left: 0;
    transform: scale(1, -1);
}
.banner-shape > :last-child {
    right: 0;
    bottom: 0;
    transform: scale(-1, 1);
}
.banner-shape.banner-shape-small > :first-child,
.banner-shape.banner-shape-small > :last-child {
    max-width: 200px;
}

/**----------------------------------------
START: Back to top CSS
----------------------------------------*/
#debtia-back-to-top {
    height: 54px;
    width: 54px;
    background-color: #ffffff;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    inset-inline-end: 24px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1001;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    #debtia-back-to-top {
        height: 50px;
        width: 50px;
    }
}
#debtia-back-to-top.active {
    bottom: 80px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: var(--bs-primary);
}
#debtia-back-to-top .return {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#debtia-back-to-top-percentage {
    height: calc(100% - 4px);
    width: calc(100% - 4px);
    background-color: #ffffff;
    color: var(--bs-secondary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px 0px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px 0px;
}
#debtia-back-to-top-percentage svg {
    fill: var(--bs-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #debtia-back-to-top {
        inset-inline-end: 30px;
    }
    #debtia-back-to-top.active {
        bottom: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    #debtia-back-to-top {
        bottom: 20px;
        inset-inline-end: 20px;
    }
    #debtia-back-to-top.active {
        bottom: 20px;
    }
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
/* !END: Back to top CSS */

.space-for-header {
    padding-top: calc(3rem + 68px);
}

p {
    margin: 0;
}

p + p {
    margin-top: 2rem;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
}
.btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.btn-blur {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    color: #ffffff !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bs-secondary);
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--bs-primary);
}

h2.sec-title {
    font-size: 3rem;
}

/* Header */
/*.leftside,*/
.leftside {
    margin-right: 4rem;
}
.rightside {
    flex: 1;
}

nav#site-navigation > ul > li > a {
    display: flex;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
    font-size: 1rem;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* Hover effect - Background Pill */
nav#site-navigation > ul > li > a:hover {
    background: rgba(8, 140, 118, 0.1);
    color: var(--bs-primary, #088c76);
}

/* Active state - current page, parent, or ancestor */
nav#site-navigation > ul > li.current-menu-item > a,
nav#site-navigation > ul > li.current-menu-parent > a,
nav#site-navigation > ul > li.current-menu-ancestor > a,
nav#site-navigation > ul > li.current_page_parent > a,
nav#site-navigation > ul > li.current_page_ancestor > a {
    background: rgba(8, 140, 118, 0.12);
    color: var(--bs-primary, #088c76);
}

/* Gradient container */
.debtia-gradient {
    position: relative;
    /*min-height: 300px;*/
}
.hero-section.debtia-gradient {
    min-height: 800px;
}

/* Debtia card */
.debtia-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.debtia-icon {
    margin-bottom: 0.6rem;
}
.debtia-icon.round-icon {
    display: flex;
    align-items: center;
    justify-items: center;
    border-radius: 100px;
    background: var(--primary-400);
    padding: 20px;
}
.debtia-card .debtia-icon svg {
    width: 60px;
    height: 60px;
    /*fill: var(--secondary-400);*/
}
/* Debtia card end */

section#pagetitle {
    margin: var(--debtia-section-margin);
    margin-top: 0;
    border-radius: var(--debtia-radius-section);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

section#pagetitle.pagetitle-extended {
    min-height: 500px;
    padding: 80px 0;
}

section#pagetitle h1 {
    color: #ffffff;
    margin-bottom: 0;
}

section#pagetitle.pagetitle-extended h1 {
    margin-bottom: 24px;
}

/* Pagetitle Breadcrumbs */
.pagetitle-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.pagetitle-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pagetitle-breadcrumb a:hover {
    color: #ffffff;
}

.pagetitle-breadcrumb .separator {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.pagetitle-breadcrumb .separator svg {
    width: 14px;
    height: 14px;
}

.pagetitle-breadcrumb .current {
    color: rgba(255, 255, 255, 0.6);
}

/* Pagetitle Subheader */
.pagetitle-subheader {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Pagetitle Description */
.pagetitle-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pagetitle-description p {
    margin-bottom: 1em;
}

.pagetitle-description p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    section#pagetitle.pagetitle-extended {
        min-height: auto;
        padding: 60px 0;
    }

    .pagetitle-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .pagetitle-subheader {
        margin-bottom: 20px;
    }
}

/* Blog section frontpage */
.blog-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #002954;
    margin-bottom: 1rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: var(--debtia-radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-link:hover {
    color: inherit;
}

/* Image */
.blog-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.blog-card-image img {
    position: absolute;
    width: 100%;
    height: 120%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Badges */
.blog-card-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.blog-card-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-card-badges .badge.bg-light {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.blog-card-badges .badge svg {
    width: 14px;
    height: 14px;
}

/* Content */
.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    display: block;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #002954;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: #088c76;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button */
.btn-outline-primary {
    border-color: #088c76;
    color: #088c76;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-width: 2px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #088c76;
    border-color: #088c76;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 140, 118, 0.3);
}

.btn-outline-primary svg {
    transition: transform 0.3s ease;
}

.btn-outline-primary:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .blog-card-image {
        height: 220px;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 1.25rem;
    }

    .blog-card-title {
        font-size: 1.125rem;
    }

    .btn-outline-primary {
        width: 100%;
        justify-content: center;
    }
}
/* Blog section frontpage END */

/*FAQ*/
/* FAQ Styling */
.faq-section {
    background-color: #ffffff;
}

.faq-container {
    background-color: #f8f9fa;
    padding: 5rem;
    border-radius: 32px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 600;
    color: #002954;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: #212529;
    font-size: 1rem;
}

.faq-link {
    color: #088c76;
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    color: #066b5e;
    text-decoration: underline;
}

/* Accordion Styling */
.accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    background-color: transparent;
}

.accordion-item:first-child {
    border-top: 1px solid #dee2e6;
}

.accordion-button {
    background-color: transparent;
    color: #212529;
    font-weight: 500;
    padding: 1.25rem 3rem 1.25rem 0;
    font-size: 1rem;
    border: none;
    box-shadow: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #088c76;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23088c76'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-size: 1.5rem;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 0 1.5rem 0;
    color: #495057;
    line-height: 1.6;
}

.accordion-collapse {
    border: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    .faq-title {
        font-size: 1.75rem;
    }
}
/*FAQ END */

/* Partners Section */
#partners {
    overflow: hidden;
    padding: 40px 0;
}

.partners-swiper {
    width: 100%;
    overflow: visible;
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.partners-swiper .swiper-slide {
    height: auto !important;
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partners-swiper .swiper-slide img {
    max-height: 50px;
    max-width: 150px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.partners-swiper .swiper-slide img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #partners {
        padding: 60px 0;
    }

    .partners-swiper .swiper-slide {
        padding: 15px;
    }

    .partners-swiper .swiper-slide img {
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    #partners {
        padding: 40px 0;
    }

    .partners-swiper .swiper-slide {
        padding: 10px;
    }

    .partners-swiper .swiper-slide img {
        max-height: 35px;
    }
}

header#header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    backdrop-filter: blur(10px);
    background: rgb(255 255 255 / 80%) !important;
    box-shadow: 2px 0 40px rgb(0 0 0 / 10%);
}

#header > div {
    margin: 0 3rem;
    padding: 0;
    width: auto;
}

.site-footer {
    background-color: #001f3f !important; /* mørk blå */
    border-radius: 32px;
    margin: 3rem 3rem 0;
}

.site-footer .bg-secondary.bg-opacity-10 {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.site-footer ul li a {
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.site-footer ul li a:hover {
    /*color: #63d887 !important; /* grønlig hover som Dinero */
    color: var(--primary-100) !important;
}

.site-footer .btn-success {
    background-color: #3bb54a;
    border-color: #3bb54a;
}

.site-footer .btn-success:hover {
    background-color: #329e3f;
    border-color: #329e3f;
}

.site-footer .rounded-4 {
    border-radius: 1.25rem !important;
}

footer#footer .address-bar {
    border-top: 1px solid rgb(255 255 255 / 30%);
}

/* Footer Address */
.footer-address {
    font-style: normal;
    line-height: 1.4;
}

.footer-address p {
    margin-bottom: 0.35rem;
}

/* Footer Badge (Kommer snart) */
.footer-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bs-primary);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 20px;
    transform: translateY(150%);
    /*opacity: 0;*/
}

.sticky-cta-bar.visible {
    pointer-events: all;
}

.sticky-cta-content {
    /*background: linear-gradient(135deg, #088c76 0%, #002954 100%);*/
    border-radius: 32px;
    padding: 1.5rem 2rem;
    box-shadow: 0 12px 48px rgba(0, 41, 84, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    /*max-width: 1400px;*/
    margin: 0 auto;
    overflow: hidden;
    background: rgb(255 255 255 / 80%);
    backdrop-filter: blur(10px);
}

.sticky-cta-text {
    flex: 1;
    /*color: white;*/
}

.sticky-cta-title {
    font-size: 1.25rem;
    font-weight: 600;
    /*color: white;*/
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.sticky-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sticky-cta-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    /*color: white;*/
}

.sticky-cta-features li svg {
    flex-shrink: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sticky-cta-action {
    flex-shrink: 0;
}

.sticky-cta-action .btn {
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991.98px) {
    .sticky-cta-bar {
        bottom: 15px;
        padding: 0 15px;
    }

    .sticky-cta-content {
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        gap: 1.25rem;
        text-align: center;
    }

    .sticky-cta-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .sticky-cta-features {
        justify-content: center;
        gap: 1rem;
    }

    .sticky-cta-features li {
        font-size: 0.875rem;
    }

    .sticky-cta-action {
        width: 100%;
    }

    .sticky-cta-action .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .sticky-cta-bar {
        bottom: 10px;
        padding: 0 10px;
    }

    .sticky-cta-content {
        padding: 1rem 1.25rem;
        border-radius: 24px;
    }

    .sticky-cta-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .sticky-cta-features li {
        font-size: 0.8125rem;
    }
}

/* Print styling */
@media print {
    .sticky-cta-bar {
        display: none !important;
    }
}

/* Frontend modal */
.debtia-contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.debtia-contact-modal {
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    width: min(90%, 500px);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    pointer-events: unset;
}

body.debtia-modal-open {
    overflow: hidden;
}

/* ==========================================
   404 Error Page
   ========================================== */
.error-404-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    margin: 0 3rem 3rem;
    border-radius: 32px;
    overflow: hidden;
}

.error-404-content {
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
}

/* 404 Number with layered effect */
.error-404-number {
    position: relative;
    height: 180px;
    margin-bottom: 1.5rem;
}

.error-404-number span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(120px, 20vw, 180px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.error-404-number .number-outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    color: transparent;
    z-index: 1;
}

.error-404-number .number-fill {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
    animation: float404 3s ease-in-out infinite;
}

@keyframes float404 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Icon */
.error-404-icon {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.error-404-icon svg {
    opacity: 0.9;
}

/* Title */
.error-404-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Text */
.error-404-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Search form */
.error-404-search {
    margin-bottom: 2rem;
}

.error-404-search .search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 480px;
    margin: 0 auto;
}

.error-404-search .search-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.error-404-search .search-icon {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.error-404-search input[type="search"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
    color: #ffffff;
    outline: none;
    min-width: 0;
}

.error-404-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.error-404-search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.error-404-search .btn {
    flex-shrink: 0;
    border-radius: 50px;
    padding: 12px 24px;
}

/* Action buttons */
.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.error-404-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.error-404-actions .btn svg {
    width: 20px;
    height: 20px;
}

.error-404-actions .btn-primary svg {
    stroke: #ffffff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .error-404-section {
        margin: 0 1.5rem;
        padding: 100px 0 60px;
    }

    .error-404-number {
        height: 140px;
    }
}

@media (max-width: 767.98px) {
    .error-404-section {
        margin: 0 1rem;
        border-radius: 0 0 24px 24px;
    }

    .error-404-number {
        height: 100px;
    }

    .error-404-text br {
        display: none;
    }

    .error-404-search .search-input-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 10px;
    }

    .error-404-search .search-icon {
        display: none;
    }

    .error-404-search input[type="search"] {
        width: 100%;
        text-align: center;
        padding: 8px 15px;
    }

    .error-404-search .btn {
        width: 100%;
    }

    .error-404-actions {
        flex-direction: column;
    }

    .error-404-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
/* 404 Error Page END */

/* ==========================================
   Blog Archive Page
   ========================================== */

/* Hero Section */
.blog-archive-hero {
    margin: 0 var(--debtia-section-margin);
    border-radius: var(--debtia-radius-section);
    padding: 140px 0 80px;
    overflow: hidden;
}

.blog-archive-hero-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.blog-archive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-archive-badge svg {
    stroke: currentColor;
}

.blog-archive-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-archive-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-archive-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-archive-stats .stat strong {
    color: #ffffff;
    font-weight: 600;
}

.blog-archive-stats .stat-divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* Blog Content Section */
.blog-archive-content {
    padding: 60px 0;
}

/* Blog Grid - CSS Grid with auto-fit */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
}

/* Compact Blog Cards for Archive/Home */
.blog-archive .blog-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    height: auto;
}

.blog-archive .blog-card:hover {
    transform: none;
    box-shadow: none;
}

.blog-archive .blog-card-image {
    height: 160px;
    border-radius: 16px;
    background: #f0f4f8;
}

.blog-archive .blog-card-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.blog-archive .blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-archive .blog-card-badges {
    top: 0.75rem;
    right: 0.75rem;
    flex-direction: row;
    gap: 0.375rem;
}

.blog-archive .blog-card-badges .badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
    border-radius: 4px;
}

.blog-archive .blog-card-content {
    padding: 1rem 0 0 0;
}

.blog-archive .blog-card-date {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.blog-archive .blog-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    -webkit-line-clamp: 2;
}

.blog-archive .blog-card-excerpt {
    font-size: 0.875rem;
    color: #6c757d;
    -webkit-line-clamp: 2;
    line-height: 1.5;
}

.blog-grid-item {
    grid-column: span 1;
}

.blog-grid-item-wide {
    grid-column: span 1;
}

/* Promo Cards */
.blog-promo-card {
    border-radius: var(--debtia-radius-card);
    padding: 1.5rem;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.blog-promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-promo-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-promo-icon svg {
    stroke: #ffffff;
    width: 28px;
    height: 28px;
}

.blog-promo-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.blog-promo-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.5;
}

.blog-promo-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.blog-promo-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.blog-promo-actions .btn-light {
    background: #ffffff;
    color: var(--bs-secondary);
    font-weight: 600;
}

.blog-promo-actions .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.blog-promo-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.blog-promo-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.blog-promo-decoration {
    display: none;
}

/* Stats Promo Card */
.blog-promo-stats {
    padding: 1.5rem;
}

.blog-promo-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

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

.promo-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.promo-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.promo-stat-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.promo-stat-cta p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.promo-stat-cta .btn {
    white-space: nowrap;
}

/* Load More Section */
.blog-load-more-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.blog-load-more-info {
    margin-bottom: 1.5rem;
}

.posts-shown {
    font-size: 0.9375rem;
    color: #6c757d;
}

.progress-bar {
    max-width: 300px;
    height: 4px;
    background: #dee2e6;
    border-radius: 4px;
    margin: 1rem auto 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.blog-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.blog-load-more-btn .btn-loading {
    display: none;
}

.blog-load-more-btn.loading .btn-text,
.blog-load-more-btn.loading .btn-icon {
    display: none;
}

.blog-load-more-btn.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-load-more-btn .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.blog-load-more-wrapper.all-loaded .blog-load-more-btn {
    background: #28a745;
    border-color: #28a745;
    cursor: default;
}

/* No Posts */
.blog-no-posts {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: var(--debtia-radius-card);
}

.blog-no-posts-icon {
    color: #dee2e6;
    margin-bottom: 1.5rem;
}

.blog-no-posts h2 {
    font-size: 1.5rem;
    color: var(--bs-secondary);
    margin-bottom: 0.75rem;
}

.blog-no-posts p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Fade in animation for loaded posts */
.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

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

/* ==========================================
   Blog Sidebar
   ========================================== */
.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: var(--debtia-radius-md);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sidebar-widget-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-secondary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-widget-title svg {
    color: var(--bs-primary);
    flex-shrink: 0;
}

/* Search Widget */
.sidebar-search {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}

.sidebar-search-form .search-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 4px 4px 4px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sidebar-search-form .search-input-group.focused,
.sidebar-search-form .search-input-group:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.sidebar-search-form .search-icon {
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.sidebar-search-form .search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 12px;
    font-size: 0.9375rem;
    color: #ffffff;
    outline: none;
    min-width: 0;
}

.sidebar-search-form .search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-search-form .search-btn {
    background: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar-search-form .search-btn svg {
    stroke: var(--bs-primary);
}

.sidebar-search-form .search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    border-bottom: 1px solid #f0f0f0;
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-name {
    color: #495057;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.category-count {
    background: #f0f0f0;
    color: #6c757d;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.category-link:hover .category-name {
    color: var(--bs-primary);
}

.category-link:hover .category-count {
    background: var(--bs-primary);
    color: #ffffff;
}

/* Popular Posts Widget */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.popular-post-item:hover {
    background: #f8f9fa;
}

.popular-post-rank {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dee2e6;
    width: 28px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.popular-post-item:hover .popular-post-rank {
    color: var(--bs-primary);
}

.popular-post-image {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post-item:hover .popular-post-image img {
    transform: scale(1.1);
}

.popular-post-content {
    flex: 1;
    min-width: 0;
}

.popular-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-secondary);
    margin: 0 0 0.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.popular-post-item:hover .popular-post-title {
    color: var(--bs-primary);
}

.popular-post-date {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Newsletter Widget */
.sidebar-newsletter {
    border-radius: 24px;
    text-align: center;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.newsletter-icon svg {
    stroke: #ffffff;
}

.sidebar-newsletter h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.sidebar-newsletter p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sidebar-newsletter .btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    color: #495057;
    font-size: 0.8125rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-item:hover {
    background: var(--bs-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Quick Links Widget */
.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    border-bottom: 1px solid #f0f0f0;
}

.quick-links-list li:last-child {
    border-bottom: none;
}

.quick-links-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    text-decoration: none;
    color: #495057;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.quick-links-list a svg {
    stroke: var(--bs-primary);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.quick-links-list a:hover {
    color: var(--bs-primary);
}

.quick-links-list a:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   Blog Archive Responsive
   ========================================== */
@media (max-width: 1199.98px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid-item-wide {
        grid-column: span 1;
    }

    .blog-promo-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-archive .blog-card-image {
        height: 140px;
    }
}

@media (max-width: 991.98px) {
    .blog-archive-hero {
        padding: 120px 0 60px;
    }

    .blog-sidebar {
        position: static;
        margin-top: 0;
        margin-bottom: 2rem;
    }

    /* Sidebar vises øverst på mobil */
    .blog-archive .row {
        flex-direction: column;
    }

    .blog-archive .col-lg-3 {
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .blog-archive-hero {
        padding: 100px 0 50px;
    }

    .blog-archive-content {
        padding: 40px 0;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

    .blog-archive .blog-card-image {
        height: 120px;
        border-radius: 12px;
    }

    .blog-archive .blog-card-image img {
        border-radius: 12px;
    }

    .blog-archive .blog-card-title {
        font-size: 0.9375rem;
    }

    .blog-archive .blog-card-excerpt {
        display: none;
    }

    .blog-promo-card {
        min-height: auto;
    }

    .blog-promo-actions .btn {
        width: 100%;
        justify-content: center;
    }

}
/* sidebar-widget now uses variable that auto-adjusts */

@media (max-width: 575.98px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-archive .blog-card-image {
        height: 180px;
    }

    .blog-archive .blog-card-excerpt {
        display: -webkit-box;
    }
}
/* Blog Archive END */

/* ==========================================
   Single Post Page
   ========================================== */

/* Hero Section */
.single-post-hero {
    margin: 0 var(--debtia-section-margin);
    border-radius: var(--debtia-radius-section);
    padding: 140px 0 60px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

/* Single Post Hero Background (parallax featured image) */
.single-post-hero-bg {
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.single-post-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

/* Breadcrumb */
.single-post-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.single-post-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-post-breadcrumb a:hover {
    color: #ffffff;
}

.single-post-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
}

.single-post-breadcrumb .separator svg {
    width: 14px;
    height: 14px;
}

/* Badges */
.single-post-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.single-post-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #ffffff;
}

.single-post-badges .badge svg {
    stroke: currentColor;
}

/* Title */
.single-post-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 2rem;
}

/* Meta */
.single-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Date display (replaces author) */
.meta-date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.meta-date svg {
    stroke: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

/* Share buttons */
.meta-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meta-share .share-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.meta-share .share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.meta-share .share-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.meta-share .share-btn svg {
    width: 18px;
    height: 18px;
}

/* Featured Image Inline (in article) */
.single-post-featured-image-inline {
    margin-bottom: 2.5rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.single-post-featured-image-inline img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* Content Section */
.single-post-content-section {
    padding: 60px 0 80px;
}

/* Entry Content - Typography */
.entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.entry-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #002954;
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.entry-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #002954;
    margin: 2rem 0 0.75rem;
    line-height: 1.4;
}

.entry-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #002954;
    margin: 1.5rem 0 0.5rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
    color: #495057;
}

.entry-content a {
    color: #088c76;
    text-decoration: underline;
    text-decoration-color: rgba(8, 140, 118, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.entry-content a:hover {
    color: #066b5a;
    text-decoration-color: #088c76;
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.75rem;
    color: #495057;
}

.entry-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(8, 140, 118, 0.08) 0%, rgba(0, 41, 84, 0.08) 100%);
    border-left: 4px solid #088c76;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: #002954;
}

.entry-content blockquote p {
    margin-bottom: 0;
    color: inherit;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2rem 0;
}

.entry-content pre,
.entry-content code {
    background: #f8f9fa;
    border-radius: 8px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
}

.entry-content pre {
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.entry-content code {
    padding: 2px 8px;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.entry-content th,
.entry-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.entry-content th {
    background: #f8f9fa;
    font-weight: 600;
    color: #002954;
}

.entry-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #088c76, #002954);
    margin: 3rem 0;
    border-radius: 2px;
}

/* Entry Footer */
.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.post-tags {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.post-tags .tags-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #002954;
    white-space: nowrap;
}

.post-tags .tags-label svg {
    stroke: #088c76;
}

.post-tags .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tags .tag-item {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    color: #495057;
    font-size: 0.8125rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.post-tags .tag-item:hover {
    background: #088c76;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.post-navigation .nav-link {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-navigation .nav-link:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.post-navigation .nav-link.nav-empty {
    background: transparent;
    pointer-events: none;
}

.post-navigation .nav-prev {
    align-items: flex-start;
}

.post-navigation .nav-next {
    align-items: flex-end;
    text-align: right;
}

.post-navigation .nav-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #088c76;
    margin-bottom: 0.5rem;
}

.post-navigation .nav-label svg {
    stroke: currentColor;
}

.post-navigation .nav-next .nav-label {
    flex-direction: row;
}

.post-navigation .nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: #002954;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Related Posts Section */
.related-posts-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-posts-section .section-header {
    margin-bottom: 3rem;
}

.related-posts-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(8, 140, 118, 0.1) 0%, rgba(0, 41, 84, 0.1) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #088c76;
    margin-bottom: 1rem;
}

.related-posts-section .section-badge svg {
    stroke: currentColor;
}

.related-posts-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #002954;
    margin-bottom: 0.75rem;
}

.related-posts-section .section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* ==========================================
   Single Post Responsive
   ========================================== */
@media (max-width: 991.98px) {
    .single-post-hero {
        padding: 120px 0 50px;
        min-height: 380px;
    }

    .single-post-title {
        font-size: 1.75rem;
    }

    .single-post-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-post-featured-image-inline {
        border-radius: 20px;
    }

    .single-post-content-section {
        padding: 40px 0 60px;
    }

    .entry-content {
        font-size: 1rem;
    }

    .entry-content h2 {
        font-size: 1.5rem;
    }

    .entry-content h3 {
        font-size: 1.25rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .post-navigation .nav-prev,
    .post-navigation .nav-next {
        align-items: flex-start;
        text-align: left;
    }

    .post-navigation .nav-next .nav-label {
        flex-direction: row-reverse;
    }
}

@media (max-width: 767.98px) {
    .single-post-hero {
        padding: 100px 0 40px;
        min-height: 320px;
    }

    .single-post-breadcrumb {
        font-size: 0.8125rem;
    }

    .single-post-badges .badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .single-post-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .meta-date {
        font-size: 0.875rem;
    }

    .meta-share {
        width: 100%;
        justify-content: flex-start;
    }

    .meta-share .share-label {
        display: none;
    }

    .single-post-featured-image-inline {
        border-radius: 16px;
        margin-bottom: 2rem;
    }

    .single-post-featured-image-inline img {
        max-height: 350px;
    }

    .single-post-content-section {
        padding: 30px 0 50px;
    }

    .entry-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .entry-content blockquote {
        padding: 1rem 1.25rem;
        margin: 1.5rem 0;
    }

    .post-navigation .nav-link {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .related-posts-section {
        padding: 60px 0;
    }
}
/* Single Post END */

/* ==========================================
   Debtia Finans Page
   ========================================== */

.debtia-finans-page {
    background: #ffffff;
}

/* Intro Section */
.finans-intro {
    padding: 80px 0;
}

.finans-intro-content {
    max-width: 640px;
}

.finans-lead {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--secondary-500);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.finans-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
}

.finans-visual-card {
    padding: 48px;
    border-radius: var(--debtia-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.finans-visual-card .visual-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.finans-visual-card .visual-icon svg {
    stroke: #ffffff;
}

.finans-visual-card .visual-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.finans-visual-card .visual-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.finans-visual-card .visual-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Benefits Section */
.finans-benefits {
    padding: 100px 0;
    margin: 0 var(--debtia-section-margin);
    border-radius: var(--debtia-radius-section);
    position: relative;
    overflow: hidden;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge svg {
    width: 18px;
    height: 18px;
}

.section-badge-dark {
    background: rgba(0, 41, 84, 0.1);
    color: var(--secondary-500);
}

.section-badge-dark svg {
    stroke: var(--primary-500);
}

.section-header .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--debtia-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    stroke: #ffffff;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Handling Section */
.finans-handling {
    padding: 100px 0;
}

.handling-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: var(--debtia-radius-lg);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.handling-card:hover {
    box-shadow: 0 20px 40px rgba(0, 41, 84, 0.1);
    transform: translateY(-4px);
}

.handling-card-icon {
    margin-bottom: 24px;
}

.handling-card-icon svg {
    stroke: var(--primary-500);
}

.handling-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-500);
    margin-bottom: 16px;
}

.handling-card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Vurdering Section */
.finans-vurdering {
    padding: 100px 0;
    background: #f8fafc;
}

.vurdering-content {
    max-width: 500px;
}

.vurdering-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-500);
    margin-bottom: 20px;
    line-height: 1.2;
}

.vurdering-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
}

.vurdering-list-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--debtia-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 41, 84, 0.08);
}

.vurdering-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-500);
    margin-bottom: 24px;
}

.vurdering-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vurdering-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.vurdering-list-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.vurdering-list-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    padding-top: 6px;
}

/* CTA Section */
.finans-cta {
    padding: 100px 0;
    margin: 0 var(--debtia-section-margin);
    margin-bottom: var(--debtia-section-margin);
    border-radius: var(--debtia-radius-section);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .finans-intro {
        padding: 60px 0;
    }

    .finans-benefits,
    .finans-handling,
    .finans-vurdering,
    .finans-cta {
        padding: 80px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .handling-card {
        padding: 32px;
    }

    .vurdering-list-wrapper {
        padding: 32px;
    }
}

@media (max-width: 767.98px) {
    .finans-intro {
        padding: 40px 0;
    }

    .finans-benefits,
    .finans-handling,
    .finans-vurdering,
    .finans-cta {
        padding: 60px 0;
    }

    .finans-visual-card {
        padding: 32px;
    }

    .benefit-card {
        padding: 24px;
    }

    .handling-card {
        padding: 24px;
    }

    .vurdering-list-wrapper {
        padding: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
/* Debtia Finans Page END */

/* =====================================================
   Inkasso Guide Page
   ===================================================== */
.inkasso-guide-page {
    overflow: hidden;
}

/* Guide Intro */
.guide-intro {
    padding: calc(var(--debtia-section-margin) * 0.5) 0 var(--debtia-section-margin);
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(8, 140, 118, 0.1), rgba(0, 41, 84, 0.1));
    color: var(--debtia-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.guide-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

/* Guide Sections */
.guide-section {
    padding: var(--debtia-section-margin) 0;
}

.guide-section-alt {
    background: #f8fafc;
    border-radius: var(--debtia-radius-section);
    margin: 0 var(--debtia-padding-horizontal);
}

.section-label {
    display: inline-block;
    color: var(--debtia-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.guide-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.guide-section-title span {
    color: var(--debtia-primary);
}

.guide-section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 48px;
}

.guide-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.guide-content p:last-child {
    margin-bottom: 0;
}

/* Highlight Box */
.guide-highlight-box {
    background: white;
    border-radius: var(--debtia-radius-card);
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(8, 140, 118, 0.1), rgba(0, 41, 84, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.guide-highlight-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--debtia-secondary);
    margin-bottom: 16px;
}

.guide-highlight-box h3 span {
    color: var(--debtia-primary);
}

.guide-highlight-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Info Cards Grid */
.guide-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.info-card {
    background: white;
    border-radius: var(--debtia-radius-card);
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.info-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--debtia-primary), var(--debtia-secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Visual Card */
.guide-visual-card {
    border-radius: var(--debtia-radius-card);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.visual-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
}

.visual-icon {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon svg {
    stroke: white !important;
}

/* Dialog Section */
.guide-dialog {
    padding: calc(var(--debtia-section-margin) * 1.5) 0;
    margin: 0 var(--debtia-section-margin, 3rem);
    border-radius: var(--debtia-radius-section);
    position: relative;
    overflow: hidden;
}

.dialog-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.dialog-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dialog-text {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

/* Avoid Tips Section */
.section-header {
    margin-bottom: 48px;
}

.avoid-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.avoid-tip {
    background: #f8fafc;
    border-radius: var(--debtia-radius-card);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.avoid-tip:hover {
    background: white;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.avoid-tip-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(8, 140, 118, 0.1), rgba(0, 41, 84, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avoid-tip p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    padding-top: 24px;
}

.contact-cta p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Links Section */
.guide-links {
    padding: var(--debtia-section-margin) 0;
    background: #f8fafc;
}

.links-box {
    background: white;
    border-radius: var(--debtia-radius-card);
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.links-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--debtia-secondary);
    margin-bottom: 12px;
}

.links-title span {
    color: var(--debtia-primary);
}

.links-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 32px;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin-bottom: 12px;
}

.links-list li:last-child {
    margin-bottom: 0;
}

.links-list a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--debtia-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    transition: all 0.2s ease;
}

.links-list a:hover {
    color: var(--debtia-secondary);
}

.links-list a svg {
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.links-list a:hover svg {
    transform: translate(3px, -3px);
}

/* =====================================================
   Inkasso Guide Page - Responsive
   ===================================================== */
@media (max-width: 991.98px) {
    .guide-section-alt {
        margin: 0;
        border-radius: 0;
    }

    .guide-dialog {
        margin: 0;
        border-radius: 0;
    }

    .guide-info-cards {
        grid-template-columns: 1fr;
    }

    .avoid-tips-grid {
        grid-template-columns: 1fr;
    }

    .guide-visual-card {
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .guide-intro {
        padding: 40px 0 60px;
    }

    .guide-intro-text {
        font-size: 1.0625rem;
    }

    .guide-section {
        padding: 60px 0;
    }

    .guide-highlight-box {
        padding: 28px;
    }

    .highlight-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .highlight-icon svg {
        width: 32px;
        height: 32px;
    }

    .info-card {
        padding: 24px;
    }

    .guide-visual-card {
        padding: 40px 28px;
        min-height: 220px;
    }

    .visual-icon {
        width: 100px;
        height: 100px;
        border-radius: 24px;
    }

    .visual-icon svg {
        width: 56px;
        height: 56px;
    }

    .guide-dialog {
        padding: 80px 0;
    }

    .links-box {
        padding: 28px;
    }

    .avoid-tip {
        padding: 20px;
    }

    .avoid-tip-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
}
/* Inkasso Guide Page END */

/* ==========================================
   Jobs / Karriere Pages
   ========================================== */

/* Hero Section */
.jobs-hero {
    padding: 80px 0;
}

.jobs-hero-illustration svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.job-hero {
    padding: 60px 0 80px;
}

.job-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.job-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Job Quick Info Pills */
.job-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.job-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-info-pill svg {
    opacity: 0.8;
}

/* Job Content Sections */
.job-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.job-section {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--bs-gray-200);
}

.job-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.job-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--bs-dark);
}

.job-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    color: white;
}

.job-section-content {
    color: var(--bs-gray-700);
    line-height: 1.7;
}

.job-section-content ul,
.job-section-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.job-section-content li {
    margin-bottom: 0.5rem;
}

/* Job Sidebar */
.job-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Apply Card */
.job-apply-card {
    background: white;
    border-radius: var(--debtia-radius-md);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 41, 84, 0.08);
    border: 1px solid var(--bs-gray-200);
}

.job-apply-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.job-apply-subtitle {
    color: var(--bs-gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* CV Upload Area */
.cv-upload-area {
    position: relative;
    border: 2px dashed var(--bs-gray-300);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    background: var(--bs-gray-50);
}

.cv-upload-area:hover,
.cv-upload-area.dragover {
    border-color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.05);
}

.cv-upload-area.has-file {
    border-style: solid;
    border-color: var(--bs-success);
    background: rgba(var(--bs-success-rgb), 0.05);
}

.cv-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.cv-upload-content svg {
    color: var(--bs-gray-400);
    margin-bottom: 0.5rem;
}

.cv-upload-content p {
    color: var(--bs-gray-600);
    margin-bottom: 0;
}

.cv-file-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.cv-file-preview svg {
    color: var(--bs-primary);
}

.cv-file-name {
    flex: 1;
    font-weight: 500;
    color: var(--bs-dark);
    word-break: break-all;
}

.cv-file-remove {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--bs-gray-500);
    transition: color 0.2s;
}

.cv-file-remove:hover {
    color: var(--bs-danger);
}

/* Contact Card */
.job-contact-card {
    background: var(--bs-gray-50);
    border-radius: var(--debtia-radius-md);
    padding: 1.5rem;
    text-align: center;
}

.job-contact-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.job-contact-image {
    margin-bottom: 1rem;
}

.job-contact-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.job-contact-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.job-contact-jobtitle {
    color: var(--bs-gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.job-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.job-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--bs-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.job-contact-link:hover {
    color: var(--bs-primary);
}

/* Share Card */
.job-share-card {
    background: white;
    border-radius: var(--debtia-radius-md);
    padding: 1.5rem;
    border: 1px solid var(--bs-gray-200);
}

.job-share-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.job-share-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.job-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--bs-gray-200);
    background: white;
    color: var(--bs-gray-600);
    transition: all 0.2s;
    cursor: pointer;
}

.job-share-btn:hover {
    border-color: transparent;
    color: white;
}

.job-share-btn.linkedin:hover {
    background: #0077b5;
}

.job-share-btn.facebook:hover {
    background: #1877f2;
}

.job-share-btn.email:hover {
    background: var(--bs-primary);
}

.job-share-btn.copy:hover {
    background: var(--bs-secondary);
}

/* Job Listings (Archive) */
.jobs-filter {
    display: flex;
    justify-content: center;
}

.jobs-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.jobs-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--bs-gray-100);
    color: var(--bs-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.jobs-filter-btn:hover {
    background: var(--bs-gray-200);
    color: var(--bs-dark);
}

.jobs-filter-btn.active {
    background: var(--bs-primary);
    color: white;
}

.jobs-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

.jobs-filter-btn:not(.active) .jobs-filter-count {
    background: var(--bs-gray-200);
}

/* Job Listing Card */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-listing-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: var(--debtia-radius-md);
    border: 1px solid var(--bs-gray-200);
    transition: all 0.3s ease;
}

.job-listing-card:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 8px 30px rgba(0, 41, 84, 0.1);
    transform: translateY(-2px);
}

.job-listing-main {
    flex: 1;
    min-width: 0;
}

.job-listing-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.job-listing-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-listing-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.job-listing-title a {
    color: var(--bs-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.job-listing-title a:hover {
    color: var(--bs-primary);
}

.job-listing-excerpt {
    color: var(--bs-gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-listing-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bs-gray-600);
    font-size: 0.85rem;
}

.job-listing-meta-item svg {
    color: var(--bs-gray-400);
}

.job-listing-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Empty State */
.jobs-empty-content {
    max-width: 500px;
    margin: 0 auto;
}

.jobs-empty-icon {
    color: var(--bs-gray-300);
}

/* Unsolicited Application Section */
.jobs-unsolicited-card {
    background: white;
    border-radius: var(--debtia-radius-lg);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 41, 84, 0.1);
}

.jobs-unsolicited-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

/* CV Upload Zone (larger version for archive) */
.cv-upload-zone {
    position: relative;
    border: 2px dashed var(--bs-gray-300);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--bs-gray-50);
}

.cv-upload-zone:hover,
.cv-upload-zone.dragover {
    border-color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.05);
}

.cv-upload-zone.has-file {
    border-style: solid;
    border-color: var(--bs-success);
    background: rgba(var(--bs-success-rgb), 0.05);
    cursor: default;
}

.cv-zone-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.cv-zone-icon {
    color: var(--bs-gray-400);
    margin-bottom: 1rem;
}

.cv-zone-text {
    color: var(--bs-dark);
}

.cv-zone-subtext {
    color: var(--bs-gray-500);
    font-size: 0.9rem;
}

.cv-zone-hint {
    color: var(--bs-gray-500);
}

.cv-zone-preview {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.cv-zone-file {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--bs-gray-200);
    max-width: 400px;
    width: 100%;
}

.cv-zone-file svg {
    color: var(--bs-primary);
    flex-shrink: 0;
}

.cv-zone-file-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.cv-zone-file-name {
    display: block;
    font-weight: 600;
    color: var(--bs-dark);
    word-break: break-all;
}

.cv-zone-file-size {
    display: block;
    font-size: 0.85rem;
    color: var(--bs-gray-500);
}

.cv-zone-file-remove {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--bs-gray-400);
    border-radius: 50%;
    transition: all 0.2s;
}

.cv-zone-file-remove:hover {
    background: var(--bs-danger);
    color: white;
}

/* Why Debtia Section */
.jobs-perk-card {
    background: white;
    border-radius: var(--debtia-radius-md);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--bs-gray-200);
    transition: all 0.3s ease;
}

.jobs-perk-card:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 8px 30px rgba(0, 41, 84, 0.1);
    transform: translateY(-4px);
}

.jobs-perk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    color: white;
    margin-bottom: 1.25rem;
}

.jobs-perk-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.jobs-perk-text {
    color: var(--bs-gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* White button variant */
.btn-white {
    background: white;
    color: var(--bs-dark);
    border: none;
}

.btn-white:hover {
    background: var(--bs-gray-100);
    color: var(--bs-dark);
}

/* Responsive */
@media (max-width: 991.98px) {
    .job-hero {
        padding: 40px 0 60px;
    }

    .job-sidebar {
        position: static;
        margin-top: 2rem;
    }

    .job-listing-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-listing-action {
        width: 100%;
    }

    .job-listing-action .btn {
        width: 100%;
        justify-content: center;
    }

    .jobs-unsolicited-card {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .jobs-hero {
        padding: 60px 0;
    }

    .job-quick-info {
        gap: 8px;
    }

    .job-info-pill {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .job-section-title {
        font-size: 1.25rem;
    }

    .job-section-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .job-apply-card {
        padding: 1.5rem;
    }

    .jobs-filter-buttons {
        gap: 0.35rem;
    }

    .jobs-filter-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .job-listing-card {
        padding: 1.25rem;
    }

    .job-listing-title {
        font-size: 1.1rem;
    }

    .cv-upload-zone {
        padding: 1.5rem;
    }
}
/* Jobs / Karriere Pages END */
