:root {
    --kf-green: #0b5b42;
    --kf-primary: #00894e;

    --kf-secondary: #1c3661;
    --kf-secondary-2: #1a2e28;

    --kf-dark: #000000;
    --kf-dark-2: #0d1f1a;

    --kf-green-dark: #0f6e56;
    --kf-green-light: #e1f5ee;
    --kf-green-mid: #5dcaa5;

    --kf-dark-2-2: #122920;
    --kf-text: #1a2e28;
    --kf-muted: #6b7c78;
    --kf-border: #e8f0ee;
    --kf-white: #ffffff;
    --kf-radius: 12px;
    --kf-radius-lg: 20px;
    --font-display: "Manrope", serif;
    --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--kf-text);
    background: #ffffff;
    overflow-x: hidden;
}

.kf-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    transition: box-shadow 0.3s ease;
}

.kf-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(29, 158, 117, 0.08);
}

.kf-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.kf-cta-inner-dwl {
    position: relative;
    padding: 3.5rem;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(
        140deg,
        #c6f2cc 0%,
        #c6f2cc 35%,
        #c8d6ed 65%,
        #c8d6ed 100%
    );
    margin-bottom: 50px;
}
.kf-saveing-phone {
    position: relative;
    top: 60px;
}

#accordionExample {
    width: 450px;
    max-width: 900px;
    margin: 0 auto;
}
#accordionExample .accordion-item {
    width: 100%;
    border: none;
    margin-bottom: 18px;
    position: relative;
    background: #fff;
}

#accordionExample .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

#accordionExample .accordion-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 14px 18px;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    border-radius: 8px !important;
    transition: all 0.3s ease;
    position: relative;
}

#accordionExample .accordion-button:not(.collapsed) {
    background: #dbdbdb;
    color: #059669;
}

#accordionExample .accordion-body {
    padding: 0 28px 28px;
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
}

#accordionExample .accordion-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 22px;
    background: #dbdbdb;
    -webkit-mask:
        linear-gradient(#dbdbdb 0 0) content-box,
        linear-gradient(#dbdbdb 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* MOBILE */
@media (max-width: 768px) {
    #accordionExample {
        width: 100%;
    }

    #accordionExample .accordion-item {
        margin-bottom: 14px;
    }

    #accordionExample .accordion-button {
        width: 100%;
        padding: 18px 16px;
        font-size: 14px;
        line-height: 1.5;
    }

    #accordionExample .accordion-body {
        padding: 0 16px 20px;
        font-size: 14px;
        line-height: 1.7;
        word-break: break-word;
    }
}

.kf-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--kf-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kf-brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--kf-secondary);
    letter-spacing: -0.3px;
}

.kf-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 768px) {
    .kf-navbar-inner .kf-btn-ghost {
        display: none;
    }
}

.kf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--kf-dark);
    color: var(--kf-white) !important;
    border: none;
    border-radius: 100px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
}

.kf-cta-inner {
    width: 100%;
    padding: 3rem 3.5rem;
}

.kf-process-card {
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 20px;
}

.kf-process-icon {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.kf-pross-title {
    font-size: 20px;
    margin: 0;
}

.kf-pross-desc {
    font-size: 15px;
    line-height: 1.8;
}

/* PHONE SCREEN */
.kf-t-screen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kf-white);
    border: none;
    border-radius: 50px;
    padding: 25px 28px 6px;
    line-height: 0.75;
}

@media (max-width: 992px) {
    .kf-section-title {
        font-size: 32px;
    }

    .kf-section-subtitle {
        font-size: 15px;
    }

    .kf-t-screen {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .kf-section-header {
        padding: 0 10px;
    }

    .kf-section-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .kf-section-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .kf-process-card {
        padding: 20px;
    }

    .kf-process-icon {
        align-items: flex-start;
    }

    .kf-pross-title {
        font-size: 17px;
    }

    .kf-pross-desc {
        font-size: 14px;
    }

    .kf-t-screen {
        width: 100%;
        border-radius: 32px;
        padding: 20px 20px 0;
    }
}

.kf-btn-primary:hover {
    background: var(--kf-dark-2);
}

.kf-faqs-ct {
    background: #f8f8f8;
    border-radius: 30px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    max-width: 60%;
    gap: 15px;
}

.kf-faqs-ct h5 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.kf-faqs-ct p {
    font-size: 14px;
    color: #393939;
    line-height: 1.7;
    margin: 0;
}

.kf-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid #111;
    background: transparent;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kf-cta-btn:hover {
    background: #111;
    color: #fff;
}
@media (max-width: 768px) {
    .kf-faqs-ct {
        max-width: 100%;
        padding: 20px;
    }
}
.kf-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--kf-primary) !important;
    color: var(--kf-white) !important;
    border: 1.5px solid var(--kf-primary);
    border-radius: 100px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}
.kf-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--kf-white) !important;
    color: var(--kf-b) lack !important;
    border: 1.5px solid var(--kf-primary);
    border-radius: 100px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}
.kf-btn-light:hover {
    background: #ededed;
    border-color: #ededed;
}

.kf-kw {
    padding: 80px 0;
    background: #f8f8f8;
    margin: 0.7rem;
    border-radius: 10px;
}

.kf-btn-ghost:hover {
    border-color: var(--kf-green);
    background: var(--kf-green) !important;
}

.kf-btn-lg {
    padding: 18px 40px;
    font-size: 15px;
}

.kf-hero-mockup {
    position: relative;
    margin-top: 20px;
    padding: 80px 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    border-radius: 24px;
}

.kf-hero-mockup::before {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    background: #1c3661;

    filter: blur(120px);
    opacity: 0.2;

    top: 40%;
    left: 35%;

    transform: translate(-50%, -50%);
}

.kf-hero-mockup::after {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    background: #00894e;

    filter: blur(120px);
    opacity: 0.2;

    top: 60%;
    left: 65%;

    transform: translate(-50%, -50%);
}

.kf-hero-mockup > * {
    position: relative;
    z-index: 1;
}

.kf-hero-mockup {
    backdrop-filter: blur(10px);
}
.kf-hero-fade {
    position: absolute;
    bottom: -10px;
    left: 0;

    width: 100%;
    height: 160px;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #ffffff 20%,
        #ffffff 40%,
        #ffffff 60%,
        #ffffff 75%,
        #ffffff 85%,
        #ffffff 100%
    );

    z-index: 3;
    pointer-events: none;
}

@media (max-width: 768px) {
    .kf-hero-mockup {
        padding: 60px 15px;
    }

    .kf-hero-mockup::before,
    .kf-hero-mockup::after {
        width: 300px;
        height: 300px;
        filter: blur(100px);
    }
}

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

@media (max-width: 768px) {
    .kf-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .kf-cta-buttons a {
        width: 100%;
        justify-content: center;
    }
}
.kf-btn-white {
    background: var(--kf-white) !important;
}

.kf-section-badge {
    display: inline-block;
    border: 1.5px solid #d7d7d7;
    color: var(--kf-green-dark-2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.kf-section-title {
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--kf-dark);
    margin-bottom: 1rem;
}

.kf-section-subtitle {
    font-size: 16px;
    color: var(--kf-muted);
    max-width: 820px;
    margin: 30px auto;
    line-height: 1.7;
}

.kf-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #fafcfb 60%, #e8f8f2 100%);
}

.kf-hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(29, 158, 117, 0.07) 0%,
        transparent 70%
    );
    top: -100px;
    right: -150px;
    pointer-events: none;
}

.kf-hero-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.kf-highlight {
    color: var(--kf-green);
    position: relative;
    display: inline-block;
}

.kf-hero-desc {
    font-size: 16px;
    color: var(--kf-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
}

.kf-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.kf-play-icon {
    font-size: 10px;
    background: var(--kf-white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
}

.kf-hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kf-trust-avatars {
    display: flex;
}

.kf-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -8px;
    background: red;
}

.kf-trust-avatars .kf-avatar:first-child {
    margin-left: 0;
}

.kf-trust-text {
    font-size: 13px;
    color: var(--kf-muted);
}

.kf-trust-text strong {
    color: var(--kf-text);
}

.kf-hero-visual {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.kf-phone-mockup {
    position: relative;
    width: 280px;
}

.kf-phone-frame {
    background: var(--kf-dark-2);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 40px 80px rgba(13, 31, 26, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.kf-phone-screen {
    background: #0f2720;
    border-radius: 30px;
    padding: 24px 18px 20px;
    min-height: 420px;
}

.kf-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.kf-app-greeting {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.kf-app-month {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.07);
    padding: 3px 8px;
    border-radius: 20px;
}

.kf-app-balance {
    background: var(--kf-green);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
}

.kf-balance-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.kf-balance-amount {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.kf-balance-amount span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.kf-app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.kf-stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
}

.kf-stat-icon {
    font-size: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.kf-stat-income .kf-stat-icon {
    background: rgba(29, 158, 117, 0.2);
    color: var(--kf-green-mid);
}
.kf-stat-expense .kf-stat-icon {
    background: rgba(229, 168, 0, 0.2);
    color: #e5a800;
}

.kf-stat-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
}

.kf-stat-val {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.kf-app-section-title {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.kf-app-budget-item {
    margin-bottom: 10px;
}

.kf-budget-name {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.kf-budget-pct {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.kf-mini-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.kf-mini-bar > div {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.kf-floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    font-family: var(--font-body);
    animation: floatCard 4s ease-in-out infinite;
}

.kf-float-1 {
    bottom: 60px;
    left: -40px;
    animation-delay: 0s;
}
.kf-float-2 {
    top: 80px;
    right: -30px;
    animation-delay: 2s;
}

.kf-float-icon {
    font-size: 20px;
}
.kf-float-title {
    font-size: 10px;
    color: var(--kf-muted);
}
.kf-float-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--kf-text);
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.kf-stats-bar {
    background: var(--kf-green);
    padding: 2.5rem 0;
}

.kf-stat-item {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.kf-stat-item:last-child {
    border-right: none;
}

.kf-stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.kf-stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.kf-features {
    padding: 100px 0;
    background: white;
}

.kf-feature-card {
    background: #fafcfb;
    border: 1px solid var(--kf-border);
    border-radius: var(--kf-radius-lg);
    padding: 2rem;
    height: 100%;
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
}

.kf-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(29, 158, 117, 0.12);
    border-color: var(--kf-green-mid);
}

.kf-process-card {
    padding: 2rem;
    height: 100%;
    gap: 2rem;
}

.kf-dw-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

@media (max-width: 992px) {
    .kf-saveing-phone {
        text-align: center !important;
    }

    .kf-dw-phone {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .kf-dw-phone {
        width: 100%;
    }

    .kf-dw-phone img,
    .kf-dw-phone svg {
        max-width: 100%;
        height: auto;
    }
}

.kf-process-card:hover {
    border-left: var(--kf-primary) 2px solid;
    cursor: pointer;
}

.kf-process-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.kf-process-icon svg {
    min-width: 58px;
    width: 58px;
    height: 58px;

    padding: 14px;
}

.kf-process-icon svg path {
    fill: currentColor;
}

.kf-process-icon .kf-pross-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
}

.kf-process-icon p {
    margin: 0.35rem 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

@media (max-width: 768px) {
    .kf-process-icon {
        padding: 1rem;
        border-radius: 18px;
    }

    .kf-process-icon svg {
        min-width: 52px;
        width: 52px;
        height: 52px;
    }

    .kf-process-icon .kf-pross-title {
        font-size: 16px;
    }
}

.kf-onboard {
    margin-top: 30px;
}

.kf-img-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.5s ease;
    transform: translateY(0);
}

.kf-img-card img {
    width: 100%;
    height: 575px;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.7s ease;
}
.kf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 5%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0.05) 65%,
        transparent 100%
    );

    backdrop-filter: blur(0.2px);
    border-radius: 24px;
    z-index: 1;
}

.kf-img-content {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    z-index: 2;
}

.kf-img-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.5s ease;
}

.kf-img-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.kf-img-card:hover img {
    transform: scale(1.08);
}

.kf-img-card:hover .kf-img-title {
    transform: translateY(0);
    opacity: 1;
}

.kf-img-card {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#tarifs .kf-tarifs-wrapper {
    position: relative;
}

#tarifs .kf-tarifs-visual {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

#tarifs .kf-tarifs-visual svg {
    width: 100%;
    height: auto;
    display: block;
}

#tarifs .kf-tarifs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 2rem;
}
.kf-tarifs-section {
    margin-top: 70px;
}

.kf-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.kf-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--kf-text);
}

.kf-feature-card p {
    font-size: 14px;
    color: var(--kf-muted);
    line-height: 1.7;
    margin: 0;
}

.kf-how {
    padding: 100px 0;
    background: #f5faf8;
}

.kf-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.kf-step:last-child {
    margin-bottom: 0;
}

.kf-step-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--kf-green-light);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    -webkit-text-stroke: 1px var(--kf-green-mid);
    color: transparent;
}

.kf-step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.kf-step-content p {
    font-size: 14px;
    color: var(--kf-muted);
    line-height: 1.7;
    margin: 0;
}

.kf-app-screens {
    position: relative;
}

.kf-screen-card {
    background: white;
    border: 1px solid var(--kf-border);
    border-radius: var(--kf-radius-lg);
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.kf-screen-main {
    text-align: center;
}

.kf-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.kf-screen-title {
    font-size: 14px;
    font-weight: 600;
}

.kf-screen-period {
    font-size: 12px;
    color: var(--kf-muted);
}

.kf-donut-placeholder {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0 1rem;
}

.kf-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.kf-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--kf-muted);
}

.kf-legend-item span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.kf-screen-secondary {
    margin-top: 1.5rem;
}

.kf-mini-screen-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.kf-goal-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.kf-goal-bar {
    flex: 1;
    height: 8px;
    background: var(--kf-green-light);
    border-radius: 8px;
    overflow: hidden;
}

.kf-goal-fill {
    height: 100%;
    background: var(--kf-green);
    border-radius: 8px;
    transition: width 1s ease;
}

.kf-goal-pct {
    font-size: 12px;
    font-weight: 600;
    color: var(--kf-green);
    min-width: 32px;
    text-align: right;
}

.kf-goal-amounts {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--kf-muted);
}

.skill-item {
    background: #f8f8f8;
    /* border: 1px solid var(--kf-border); */
    border-radius: var(--kf-radius-lg);
    padding: 2rem;
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.skill-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(11, 91, 66, 0.1);
    border-color: #f8f8f8;
    cursor: pointer;
}

.skill-item span {
    display: block;
    width: 100%;
    overflow: hidden;
    height: 300px;
    flex-shrink: 0;
}

.skill-item span svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.skill-item .kf-plan-price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--kf-text);
    margin: 0;
    line-height: 1.3;
}

.skill-item p {
    font-size: 14px;
    color: var(--kf-muted);
    line-height: 1.7;
    margin: 0;
}
.kf-skills {
    padding: 10px;
    background: white;
}

.kf-testimonial-card {
    background: #fafcfb;
    border: 1px solid var(--kf-border);
    border-radius: var(--kf-radius-lg);
    padding: 2rem;
    height: 100%;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.kf-testimonial-featured {
    background: var(--kf-green);
    border-color: var(--kf-green);
    color: white;
}

.kf-testimonial-featured p,
.kf-testimonial-featured .kf-author-role {
    color: rgba(255, 255, 255, 0.8);
}

.kf-pricing {
    padding: 100px 0;
    background: #f5faf8;
}

.kf-pricing-card {
    background: #f8f8f8;
    border: 1px solid var(--kf-border);
    border-radius: var(--kf-radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.kf-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(29, 158, 117, 0.12);
}

.kf-pricing-featured {
    background: var(--kf-white);
    /* border-color: var(--kf-dark-2); */
    transform: scale(1.02);
}

.kf-pricing-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.kf-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kf-green);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.kf-plan-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--kf-muted);
    margin-bottom: 0.5rem;
}

.kf-pricing-featured .kf-plan-name {
    color: black;
}

.kf-plan-price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--kf-black);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.kf-pricing-featured .kf-plan-price {
    color: black;
}

.kf-plan-price span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--kf-muted);
}

.kf-pricing-featured .kf-plan-price span {
    color: black;
}

.kf-plan-desc {
    font-size: 13px;
    color: var(--kf-black);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--kf-border);
}

.kf-pricing-featured .kf-plan-desc {
    color: rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.kf-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.kf-plan-features li {
    font-size: 13px;
    color: var(--kf-black);
    padding: 6px 0;
    border-bottom: 1px solid var(--kf-border);
}

.kf-pricing-featured .kf-plan-features li {
    color: black;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.kf-feature-off {
    color: var(--kf-muted) !important;
}

.kf-plan-btn {
    display: block;
    text-align: center;
    border-radius: 40px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.kf-plan-btn-primary {
    background: var(--kf-green);
    color: white !important;
}

.kf-plan-btn-primary:hover {
    background: var(--kf-green-dark-2);
    /* box-shadow: 0 8px 24px rgba(29,158,117,0.3); */
}

.kf-plan-btn-ghost {
    background: transparent;
    color: var(--kf-text) !important;
    border: 1.5px solid var(--kf-border);
}

.kf-plan-btn-ghost:hover {
    border-color: var(--kf-green);
    color: var(--kf-green) !important;
}

.kf-cta {
    padding: 80px 0;
    background: var(--kf-green);
    margin: 0.5rem;
    border-radius: 10px;
}

.wkf-download {
    padding: 80px 0;
    background: linear-gradient45deg, (#00ff22 60%, #143b7f 100%);
    margin: 0.5rem;
    border-radius: 10px;
    justify-content: center;
}

.kf-cta-inner .kf-pross-col {
    display: flex;
    gap: 2rem;
}

.active-col {
    border-left: var(--kf-primary) 4px solid;
}

.kf-pross-title {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 1rem;
}

.kf-pross-desc {
    font-size: 15px;
    color: #393939;
    line-height: 1.7;
    margin: 0;
}

.kf-footer {
    background: var(--kf-dark-2);
    padding: 0;
    color: rgba(255, 255, 255, 0.65);
}

.kf-footer-top {
    padding: 5rem 0 3rem;
    justify-content: space-between;
}

.kf-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.kf-footer-brand .kf-brand-name {
    color: white;
}

.kf-footer-desc {
    font-size: 14px;
    color: white;
    line-height: 1.7;
    max-width: 280px;
}

.kf-social-links {
    display: flex;
    gap: 10px;
}

.kf-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
}

.kf-social-btn:hover {
    background: var(--kf-green);
    color: white;
    border-color: var(--kf-green);
}

.kf-footer-heading {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

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

.kf-footer-links li {
    margin-bottom: 0.6rem;
}

.kf-footer-links a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.kf-footer-links a:hover {
    color: var(--kf-green-mid);
}

.kf-footer-bottom {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}

.kf-footer-tagline {
    font-family: var(--font-display);
    font-size: 180px;
    font-weight: 700;
    color: white;
    line-height: 0.75;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    letter-spacing: -4px;
}

.kf-footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.kf-section-header {
    margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
    .kf-hero {
        padding: 120px 0 60px;
    }
    .kf-hero-title {
        font-size: 36px;
    }
    .kf-hero-visual {
        margin-top: 3rem;
    }
    .kf-section-title {
        font-size: 28px;
    }
    .kf-cta-title {
        font-size: 28px;
    }
    .kf-cta-inner {
        padding: 2.5rem 2rem;
    }
    .kf-footer-tagline {
        font-size: 80px;
        letter-spacing: -2px;
    }
}

@media (max-width: 767.98px) {
    .kf-hero-title {
        font-size: 30px;
    }
    .kf-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .kf-stat-item:last-child {
        border-bottom: none;
    }
    .kf-pricing-featured {
        transform: none;
    }
    .kf-pricing-featured:hover {
        transform: translateY(-4px);
    }
    .kf-float-1,
    .kf-float-2 {
        display: none;
    }
    .kf-footer-tagline {
        font-size: 52px;
        letter-spacing: -1px;
    }
}

.kf-ticker-wrapper {
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.kf-ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: kf-ticker-scroll 28s linear infinite;
    will-change: transform;
}

.kf-ticker-track:hover {
    animation-play-state: paused;
}

.kf-ticker-item {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--kf-green-dark);
    padding: 0 1.25rem;
    letter-spacing: 0.1px;
}

.kf-ticker-sep {
    color: var(--kf-green-mid);
    font-size: 18px;
    line-height: 1;
    opacity: 0.5;
    flex-shrink: 0;
}

.kf-accordion-body {
    font-size: 15px;
    line-height: 1.8;
    color: #393939;
    text-align: justify;
    padding: 20px;
}

@keyframes kf-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .kf-ticker-track {
        animation: none;
    }
}

/* CGU & Privacy CSS */

.legal-section {
    padding: 0 3.5rem 0 3.5rem;
}

.legal-section-title {
    font-weight: 700;
}

.legal-roundedList {
    list-style: none;
    padding-left: 0;
}

.legal-roundedList li {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.legal-roundedList li::before {
    content: "o";
    flex-shrink: 0;
}
.legal-alphabetList {
    list-style-type: lower-alpha;
    padding-left: 20px;
}

.legal-alphabetList li {
    margin-bottom: 8px;
}
